Size: 568
Comment:
|
Size: 1075
Comment: Add Power section; Reorganize page
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<TableOfContents>> |
|
Line 7: | Line 9: |
Line 9: | Line 12: |
=== Recursive directory removal === | === Active Directory === {{{ # Force Group Policy Object update on a client machine: gpupdate }}} === File management === |
Line 12: | Line 21: |
# Recursive directory removal | |
Line 13: | Line 23: |
}}} | |
Line 15: | Line 24: |
=== Removing desktop.ini files from a directory structure === {{{ |
# Remove desktop.ini files from a directory structure |
Line 21: | Line 28: |
=== Power === {{{ # Display an energy efficiency report (Windows 7) powercfg /energy }}} == Shortcuts == === Run application with administrative privileges === `Ctrl+Shift+Enter` when clicking on a shortcut will launch an application with administrative privileges. Works on Windows Vista and above. Usually brings up a User Account Protection (UAP) dialog. |
|
Line 22: | Line 43: |
CategoryCheetSheet | CategoryCheatSheet |
Contents
Installation
Selecting different HAL during installation
A different HAL (e.g. Standard HAL instead of ACPI HAL) can be chosen on installation by hitting F5 during the Press F6 if you need to install a third party SCSI or RAID driver message.
Commands
Active Directory
# Force Group Policy Object update on a client machine: gpupdate
File management
# Recursive directory removal rmdir /s /q [directory] # Remove desktop.ini files from a directory structure FOR /f %G in ('dir /b') do attrib %G\desktop.ini -h -s FOR /f %G in ('dir /b') do del %G\desktop.ini
Power
# Display an energy efficiency report (Windows 7) powercfg /energy
Shortcuts
Run application with administrative privileges
Ctrl+Shift+Enter when clicking on a shortcut will launch an application with administrative privileges. Works on Windows Vista and above. Usually brings up a User Account Protection (UAP) dialog.