windows.rst
changeset 651 2fd37a2d3aef
parent 650 a1c4d8b5711b
child 660 a867e08c7289
equal deleted inserted replaced
644:2a0bed0e3bba 651:2fd37a2d3aef
   305 On Windows Vista and Windows Server 2008, UAC is disabled by following these steps:
   305 On Windows Vista and Windows Server 2008, UAC is disabled by following these steps:
   306 
   306 
   307   1. Start Control Panel and double-click User Accounts.
   307   1. Start Control Panel and double-click User Accounts.
   308   2. In the User Accounts tasks window, click Turn User Account Control on or off.
   308   2. In the User Accounts tasks window, click Turn User Account Control on or off.
   309   3. Clear the Use User Account Control (UAC) to help protect your computer check box, and then click OK.
   309   3. Clear the Use User Account Control (UAC) to help protect your computer check box, and then click OK.
       
   310 
       
   311 * Fix file association.
       
   312 
       
   313 Check current association:
       
   314 
       
   315   $ cmd /c assoc | grep -i "^\.mp3"
       
   316 .mp3=mp3file
       
   317 
       
   318 Get list of all available commands:
       
   319 
       
   320   $ cmd /c ftype
       
   321 ...
       
   322 AIMP.mp3="C:\Program Files\AIMP2\AIMP2.exe" "%1"
       
   323 ...
       
   324 
       
   325 and select one on them:
       
   326 
       
   327   $ cmd /c assoc .mp3=AIMP.mp3