Jump to content

nakira

Member
  • Posts

    118
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Japan

Everything posted by nakira

  1. If you want a clean install, the latest installer has a switch for silent installs. mirc62.exe /S Otherwise just sfx the whole folder and create shortcuts Then import these two registry values with regedit /S mirc.reg Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\mirc\License] @="XXXX-XXXXXX" [HKEY_CURRENT_USER\Software\mirc\UserName] @="XXXXXXXX" All other reg entries, including uninstall, will be made first time mirc is run.
  2. I bet it's named start.bat or start.cmd which would cause it to call itself over and over.
  3. IF has a switch to do case insensitive comparisons. IF /I "blah" == "BLAH" <command>
  4. Could be a corrupt driver. Could be a dirty lens. Could be a defective drive.
  5. Right now... Uptime: 2d 17h:57m:54s WorkingSetSize of explorer.exe is 12050432 (bytes) 12050432 = 11.49MB
  6. This can be caused by a trojan/virus overwriting the UserInit key in your registry to run itself. Can you boot into 'Safe Mode With Command Prompt'?.
  7. @echo off&setlocal enableextensions for /f "skip=1" %%a in ('wmic useraccount where name^="%username%" get SID') do set UserKey=HKU\%%a echo * %%UserKey%% Value: %Userkey% endlocal&pause
  8. attrib -r "%programfiles%\Alwil Software\Avast4\*" /s
  9. To me it seems more useful to lower the length of time that restore points are kept. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore] "RPLifeInterval"=dword:00093a80 This will purge restore points older than 7 days, instead of the 90 days that is default. If I haven't needed to restore in 7 days I doubt i ever will, or that doing so would be useful
  10. Well it's not quite #7, but close...
  11. nakira

    help!

    Maybe this could help you Duplicate Icons in the Desktop
  12. read my question again or ask for a better explanation of my problem if you dont understand, thx. Maybe you should read your question again...
  13. HOWTO: Use Group Policy to disable USB, CD-ROM, Floppy Disk and LS-120 drivers
  14. Filever.exe It's a part of the Windows XP Service Pack 2 Support Tools
  15. Right click on Documents > Properties > Location > Move >...
  16. $systemdrive$ should be %systemdrive% edit: LOL I didn't read down to the edit
  17. Try Removing the spaces (or replacing them with underscores) in the filenames and the reg entries.
  18. This should be what you want. For one user: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] "Shell"="C:\\Path\\YourShell.exe" For all users: [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] "Shell"="C:\\Path\\YourShell.exe"
  19. You need to create the reg key outlined below, it is not present by default. Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ComDlg32\Placesbar] "Place0"=dword:00000000 "Place1"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,44,00,72,00,69,00,76,\ 00,65,00,25,00,5c,00,00,00 "Place2"="D:\\" "Place3"="E:\\" "Place4"=dword:00000011 In the above Place0 = Desktop Place1 = %systemdrive%\ Place2 & Place3 = obvious Place4 = My Computer Here's a few default values you can use in place of absolute paths Desktop: 00000000 My Documents: 00000005 My Computer: 00000011
  20. @ MAVERICKS CHOICE You can use shutdown.exe just as easily shutdown -r -f -t 10 -c "Restarting"
  21. Copy/Nove to regsvr32 /u ContextMenuExt.dll Add /s switch for batch use.
  22. Remove the trailing backslashes Robocopy.exe /MIR "d:\My Downloads" "i:\Netdata\MyDataBackup\My Downloads"
×
×
  • Create New...