equal
deleted
inserted
replaced
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 |