Jump to content

Nomadturk

Members
  • Posts

    256
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Nomadturk

  1. Fransızca siteyi vermişsin. İngilizce site adresi
  2. Ehem... I386\HIVEDEF.INF HKCU,"Control Panel\Sound","Beep",0x00000000,"Yes" Dosyasında bulunan Beep değerini Yes'e
  3. Merhaba, Windows'unda Bilgisayar A
  4. $DOCS = Documents and Settings klas
  5. nLite'dan eklemenin bir dezavantajı, kullanıcı bu eklentide olacağı gibi kaldırma salahiyetine sahip olamayacaktır. Bu eklenti benim olmazsa olmazlarımdan biridir. Ekledim ekleyeli cmd kullanışım arttı. (:
  6. Bir de bunu deneseniz? http://download.microsoft.com/download/9/B...wlsetup-all.exe
  7. (: I've downloaded, modified what i needed, removed/added some stuff and created my customized batch file. It indeed is a good source. Till now, i was only using BricoPacks and to be honest, you can't even compare the two! It sure gives XP a new and better look.
  8. Rubab, you can extract the file you download, select sysdm.cpl.res from within the Resources files, open it with Reshacker and edit it as you wish, save and re-add it to the archive. after removing or changing that section, if you will.
  9. RunOnceEx.cmd dosyana ekleyip ilk kullanıcı giriş ekranında Ornek.zip
  10. İstanbul trafiği, doğaldır. (: Paket gelene değin... REG ADD %KEY%\090 /V 18 /D "%CDROM%\Install\IE7-WindowsXP-KB960714-x86-TRK.exe /quiet /norestart" /f
  11. Sebebini bilmiyoru ama, maalesef bu paket genelde takılmalara ve hatalara neden olabiliyor. RunOnceEx'de
  12. DriverPacks'de olan paket elbette ki t
  13. http://www.driverpacks.net/ Buraya gidip Mass Storage Drivers paketini indir. İndirdiğin dosyayı bir klas
  14. Well, this way you can delete folders. But this is as much i could do it. This script below deletes files any folders starting with "7z" from within your default users directory. BUT, if there are any files in that directories, you may need to run the script twice. It first deletes the inner contents of directories. Second run deletes the folders themselves. (Sometimes... 3-4 runs needed.) I don't know if you can run this at installation stage. But if you can, you can do it by the code below. wscript DeleteFolders.vbs Name this as DeleteFolders.vbs and try. strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colFolders = objWMIService.ExecQuery _ ("Select * from Win32_Directory where Name Like '%C:\\Documents and Settings\\Default User\\7z%'") Set colFiles = objWMIService.ExecQuery _ ("Select * from Win32_Directory where Name Like '%C:\\Documents and Settings\\Default User\\7z%\\'") For Each objFolder in colFolders errResults = objFolder.Delete Next Well, give it a try. Hope it might help you. I sure learnt something while searching for this. (: You may improve it yourself.
  15. I think you can't. You'll have to enter them manually. That's what i did.
  16. Any ideas how to download the full release but the wlinstaller?
  17. For that, i'm using a custom cmd file to remove leftover files that i don't want. Try using the code below. When i tried, it worked. Save it as Cleanup.cmd and add it to your RunOnceEx.cmd file. Cleanup.cmd cmdow @ /HID @echo off DEL /F /Q "%systemdrive%\Documents and Settings\Default User\7z*.tmp" EXIT Also, i was using this for folder deletions. del "%systemdrive%\Documents and Settings\Default User\OpenOffice.org 2.4 (tr) Installation Files" /Q /S /F
×
×
  • Create New...