# HG changeset patch # User Oleksandr Gavenko # Date 1487618400 -7200 # Node ID 582907ac30d100b4c7b3be3a4d751a9fa5bd1cfa # Parent 1a896c3e47c2c920ef22f00b8cd4677c9d1b5796 Improve RST formatting. Remove deprecated utilities. diff -r 1a896c3e47c2 -r 582907ac30d1 windows.rst --- a/windows.rst Sun Feb 19 12:48:26 2017 +0200 +++ b/windows.rst Mon Feb 20 21:20:00 2017 +0200 @@ -205,26 +205,29 @@ Standard scripts. ================= - compmgmt.msc - Computer management - devmgmt.msc - Device manager - diskmgmt.msc - Disk management +:``msconfig``: System Configuration Utility, you can disable services registered + at boot. +:``regedit``: Registry Editor. +:``services.msc``: Service management. +:``compmgmt.msc``: Computer management. +:``devmgmt.msc``: Device manager. +:``diskmgmt.msc``: Disk management. +:``msinfo32``: System Information. +:``perfmon.msc``: Performance monitor. + +These scripts can be invoked via ``Win+R``:: + dfrg.msc - Disk defrag eventvwr.msc - Event viewer fsmgmt.msc - Shared folders gpedit.msc - Group policies lusrmgr.msc - Local users and groups - perfmon.msc - Performance monitor - rsop.msc - Resultant set of policies secpol.msc - Local security settings - services.msc - Various Services - msconfig - System Configuration Utility - regedit - Registry Editor - msinfo32 - System Information - sysedit - System Configuration Editor win.ini - windows loading information(also system.ini) winver - Shows current version of windows - mailto: - Opens default email client command - Opens command prompt + control fonts - Fonts Folder + control printers - Printers Folder appwiz.cpl - Add & Remove Programs timedate.cpl - Date/Time Properties @@ -234,61 +237,59 @@ sysdm.cpl - System Properties password.cpl - Password Options main.cpl - Mouse and Keyboard Options - control fonts - Fonts Folder - control printers Printers Folder -'.cpl' scripts can be run from command line as: +``.cpl`` scripts can be run from command line as:: cmd> Rundll32 Shell32.dll,Control_RunDLL cmd> Rundll32 Shell32.dll,Control_RunDLL Mmsys.cpl,,0 -Path. -===== +Path +==== -Max path length. ----------------- +Max path length +--------------- 260 chars. Use MAX_PATH macros from 'windows.h'. -Allowed characters. -------------------- +Allowed characters +------------------ Not allowed: - * characters from 0 to 31 - * < (less than) - * > (greater than) - * : (colon) - * " (double quote) - * / (forward slash) - * \ (backslash) - * | (vertical bar or pipe) - * ? (question mark) - * * (asterisk) +* characters from 0 to 31 +* ``<`` (less than) +* ``>`` (greater than) +* ``:`` (colon) +* ``"`` (double quote) +* ``/`` (forward slash) +* ``\`` (backslash) +* ``|`` (vertical bar or pipe) +* ``?`` (question mark) +* ``*`` (asterisk) - http://msdn.microsoft.com/en-us/library/aa365247.aspx - Naming Files, Paths, and Namespaces +http://msdn.microsoft.com/en-us/library/aa365247.aspx + Naming Files, Paths, and Namespaces. -Memory. -======= +Memory +====== http://msdn.microsoft.com/en-us/library/ff542275%28v=VS.85%29.aspx Boot Parameters to Configure DEP and PAE -PAE. ----- +PAE +--- All 32-bit Windows XP support only 4 GiB RAM. To enable PAE (Physical Address -Extension) edit 'c:\boot.ini', add option '/pae': +Extension) edit ``c:\boot.ini``, add option ``/pae``:: multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="MS Windows XP Prof" /fastdetect /pae - http://msdn.microsoft.com/en-us/library/ff557168%28v=VS.85%29.aspx - /pae option - http://www.microsoft.com/whdc/system/platform/server/pae/paedrv.mspx - PAE support +http://msdn.microsoft.com/en-us/library/ff557168.aspx + ``/pae`` option. +http://www.microsoft.com/whdc/system/platform/server/pae/paedrv.mspx + PAE support. -NX. ---- +NX +-- NX (no execute) in Windows realised in Data Execution Prevention (DEP) technology.