
nakira
Member-
Posts
118 -
Joined
-
Last visited
-
Donations
$0.00
Content Type
Profiles
Forums
Calendar
Store
Everything posted by nakira
-
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.
-
What's wrong with this batch file please?
nakira replied to goosh's topic in Unattended Windows 2000/XP/2003
I bet it's named start.bat or start.cmd which would cause it to call itself over and over. -
IF has a switch to do case insensitive comparisons. IF /I "blah" == "BLAH" <command>
-
Could be a corrupt driver. Could be a dirty lens. Could be a defective drive.
-
Right now... Uptime: 2d 17h:57m:54s WorkingSetSize of explorer.exe is 12050432 (bytes) 12050432 = 11.49MB
-
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'?.
-
question about paths when i burn cd
nakira replied to francis997's topic in Unattended Windows 2000/XP/2003
-
Is this reg string unique to each install?
nakira replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
@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 -
About the attrib command on cleaup.cmd
nakira replied to gugutz's topic in Unattended Windows 2000/XP/2003
attrib -r "%programfiles%\Alwil Software\Avast4\*" /s -
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
-
Well it's not quite #7, but close...
-
Maybe this could help you Duplicate Icons in the Desktop
-
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...
-
HOWTO: Use Group Policy to disable USB, CD-ROM, Floppy Disk and LS-120 drivers
-
Filever.exe It's a part of the Windows XP Service Pack 2 Support Tools
-
Right click on Documents > Properties > Location > Move >...
-
$systemdrive$ should be %systemdrive% edit: LOL I didn't read down to the edit
-
Try Removing the spaces (or replacing them with underscores) in the filenames and the reg entries.
-
[help]alt. shell for unattended install! :D
nakira replied to anoxan's topic in Unattended Windows 2000/XP/2003
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" -
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
-
@ MAVERICKS CHOICE You can use shutdown.exe just as easily shutdown -r -f -t 10 -c "Restarting"
-
Remove those from Right Click Context Menu?
nakira replied to Wesmosis's topic in Unattended Windows 2000/XP/2003
Copy/Nove to regsvr32 /u ContextMenuExt.dll Add /s switch for batch use. -
Remove the trailing backslashes Robocopy.exe /MIR "d:\My Downloads" "i:\Netdata\MyDataBackup\My Downloads"
-
setting path and adding a user
nakira replied to pcdreams's topic in Unattended Windows 2000/XP/2003
*N/M*