Microsoft Windows: Difference between revisions

From lurkmore wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
'''Windows''' is the name of the operating system released by [[Microsoft]]. If you want to be a gamer, you'll likely be using Windows, though [[Linux]], mainly [[Ubuntu]], may start to become a gaming powerhouse in late 2012 and during 2013.
'''Windows''' is the name of the operating system released by [[Microsoft]]. If you want to be a gamer, you'll likely be using Windows, though [[Linux]], mainly [[Ubuntu]], may start to become a gaming powerhouse in late 2012 and during 2013.
== Command Prompt ==
In Windows, '''Command Prompt''' is a command line utility where more advanced operations can be performed.
When you are told to open an '''elevated Command Prompt''', that instructing you to run Command Prompt as administrator. If you have UAC disabled, you can just run Command Prompt as you normally would. If you don't know what UAC settings you are using, or don't know what it is, it's likely that you have to find the Command Prompt shortcut in the Start menu and right click on it to select <code>Run as administrator</code>.
== Fix partitions on drive when no options provided in Disk Management ==
Steps to fix the partitions on a drive when Windows Disk Management doesn't provide any options for deleting partitions.
# Open an [[elevated Command Prompt]].
# <code>diskpart</code>
# <code>list disk</code>
# Note the disk number that corresponds to your drive.
# Select disk X where X is the number from step 4.
# <code>list partition</code>
# <code>select partition 0</code>
# <code>delete partition</code>
# <code>select partition 1</code>
# <code>delete partition</code>
# <code>create partition primary</code>
# <code>exit</code>
# Exit Command Prompt (enter <code>exit</code> or just close the window)
# In [[Windows Explorer]], go to ''Computer'' and try to open the disk. It will ask you to format it.
# Format it with the default settings and optionally give it a name.


== Select "No to All" ==
== Select "No to All" ==
Line 11: Line 34:
You can reduce the Microsoft Windows 7 WinSxS folder's size by about 3GB, on average. The process is extremely simple.
You can reduce the Microsoft Windows 7 WinSxS folder's size by about 3GB, on average. The process is extremely simple.


Enter the Command Prompt: <code>Winkey+R > cmd.exe</code>. If you have UAC enabled, or don't know what that means, make sure you're using Command Prompt with Administrator privileges <code>Start>Programs>Accessories, right click on Command Prompt and select Run as administrator</code>.
# Open an [[elevated Command Prompt]].
 
# Enter <code>dism /online /cleanup-image /spsuperseded</code>.
Enter <code>dism /online /cleanup-image /spsuperseded</code> and hit enter.


Let it run and you're done!
Let it run and you're done!

Revision as of 13:58, 29 September 2016

Windows is the name of the operating system released by Microsoft. If you want to be a gamer, you'll likely be using Windows, though Linux, mainly Ubuntu, may start to become a gaming powerhouse in late 2012 and during 2013.

Command Prompt

In Windows, Command Prompt is a command line utility where more advanced operations can be performed.

When you are told to open an elevated Command Prompt, that instructing you to run Command Prompt as administrator. If you have UAC disabled, you can just run Command Prompt as you normally would. If you don't know what UAC settings you are using, or don't know what it is, it's likely that you have to find the Command Prompt shortcut in the Start menu and right click on it to select Run as administrator.

Fix partitions on drive when no options provided in Disk Management

Steps to fix the partitions on a drive when Windows Disk Management doesn't provide any options for deleting partitions.

  1. Open an elevated Command Prompt.
  2. diskpart
  3. list disk
  4. Note the disk number that corresponds to your drive.
  5. Select disk X where X is the number from step 4.
  6. list partition
  7. select partition 0
  8. delete partition
  9. select partition 1
  10. delete partition
  11. create partition primary
  12. exit
  13. Exit Command Prompt (enter exit or just close the window)
  14. In Windows Explorer, go to Computer and try to open the disk. It will ask you to format it.
  15. Format it with the default settings and optionally give it a name.

Select "No to All"

While copying files in Microsoft Windows you might be asked whether you want to replace an existing file or folder. You will be given four options: Yes, Yes to All, No, and Cancel. Oddly, No to All is missing.

Selecting No to All is extremely simple. Hold down the Shift key and select No.

Reduce the size of WinSxS folder

Note: this is for Windows 7 users who installed the Service Pack updates themselves. If your system came with SP1 already installed, this won't do anything when you run it.

You can reduce the Microsoft Windows 7 WinSxS folder's size by about 3GB, on average. The process is extremely simple.

  1. Open an elevated Command Prompt.
  2. Enter dism /online /cleanup-image /spsuperseded.

Let it run and you're done!

Related articles