Jump to content

PITU

Member
  • Posts

    41
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Everything posted by PITU

  1. You don't seem to understand the script... What it does is to echo your settings to a logfile. after that it starts the ftp.exe with the logfile _as source_. After it's done the script deletes the logfile. You can upload any file with that script EDIT: Just give it a try and you'll see: it works fine
  2. I'm sure it's not as beautiful as if it were hidden, but this simple script does what you want. It uploads a file: Write the following code into a *.CMD or *.BAT and put it into your SendTo-Folder. Note: You have to enter your password, server and your username @echo off echo.################## echo.# # echo.# Uploading File # echo.# # echo.################## set user=YOUR_USERNAME_GOES_HERE set pass=YOUR_PASS_GOES_HERE set srvr=YOUR_SERVER_GOES_HERE echo.open %srvr%>%temp%\sendtoftp.log echo.%user%>>%temp%\sendtoftp.log echo.%pass%>>%temp%\sendtoftp.log echo.BINARY>>%temp%\sendtoftp.log echo.put %1>>%temp%\sendtoftp.log echo.bye>>%temp%\sendtoftp.log ftp -s:%temp%\sendtoftp.log del %temp%\sendtoftp.log Hope it helps /PITU
  3. Hello! Thank you, I will give nlite a try, although I prefer doing all the Changes manually I like to _understand_ not only to change settings
  4. Hello! I'd like to completely remove some services. e.g. EventLogging. How can that be done? And how do I get to know which files belong to the specific service? I hope somebody can help me /PITU (sorry for my bad English)
  5. Could you export the relevant setting from the registry and post it here? Then I could show you how to order them
  6. Hello! Open regedit Browse to "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0" Create a new "key" named "User Agent". Open it and edit the entry named "(standard)" to your favorite Browsername. Create three new Entrys (REG_SZ) named "Platform", "Compatible", "Version". After you have done that you can put your Settings into the entries. That's it. Sorry for my bad English, wrote it very fast
  7. Enya - Only Time ?
  8. Your're right, it's silly, but if you have a look at his SIF, you will find a warez-favourite... i bet, it's a stolen key, you can find it via google... man should ban him
  9. OK, I re-read your post... so I searched some DLLs for the language-specific-strings and now here are my tweaks, adding Services, Control Panel, Device Manager and Drive Cleanup to the my computer context menu: Windows Registry Editor Version 5.00 ; Control Panel [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\ControlPanel] @="@%windir%\\system32\\shell32.dll,-4161" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\ControlPanel\command] @="rundll32.exe shell32.dll,Control_RunDLL" ;Device Manager [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Devmgmt] @="Device Manager" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Devmgmt\command] @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,\ 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,\ 65,00,20,00,2f,00,73,00,20,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,\ 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,64,00,65,00,\ 76,00,6d,00,67,00,6d,00,74,00,2e,00,6d,00,73,00,63,00,00,00 ;Drive Cleanup [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DrvCleanUp] @="@%windir%\\system32\\shell32.dll,-22026" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DrvCleanUp\command] @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\ 00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,63,00,6c,00,\ 65,00,61,00,6e,00,6d,00,67,00,72,00,2e,00,65,00,78,00,65,00,00,00 ;Services [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Services] @="@%windir%\\system32\\shell32.dll,-22059" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Services\command] @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,\ 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,\ 65,00,20,00,2f,00,73,00,20,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,\ 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,65,00,\ 72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73,00,63,00,00,00 For Device Manager I did not find any string in the dlls, if anybody knows the dll i have to look in, pls tell me.
  10. Hello! Ok, here is an example: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\RegEdit] [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\RegEdit\command] @="regedit" Save this file as - for example - my_computer.reg and doubleclick. From now on Regedit will be shown in my computer's contextmenu. Explanation: HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\RegEdit The RegEdit (bold) is the entry which you will see in the menu. @="regedit" The entry between the "" is the command which windows will execute. you could also use smthng like this: @="C:\\Programs\\Microsoft Office\\WINDORD.EXE" (note the doubled backslashes)
  11. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultIcon] @="shell32.dll,9" The Driveletter you want to edit the icon for goes here: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultIcon]
  12. HellO! Is it possible to do this editing the explorer.exe? I tried it with ResHacker. I found the Accellerator-Part, but I dont know the - hmm, handler? ... the number which the menu-item refers to. Is there any way to do that?
  13. Hello! I created a couple of new items in the context-menu (for example "Res-Hack it!",...). But for now the Context Menu is much longer (logically). So I would like to add A Submenu in which i want to place all my custom items. I mean something like the "Send To" menu. Is it possible to do that? I hope so anybody can help me with that. /PITU
  14. Hello! This worked for me: Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\exefile\shell\Res-Hack it!] [HKEY_CLASSES_ROOT\exefile\shell\Res-Hack it!] [HKEY_CLASSES_ROOT\exefile\shell\Res-Hack it!\command] @="c:\\Programs\\Res-Hacker\\ResHacker.exe \"%1\"" I supposed that Resource-Hacker is installed to "c:\Programs\Res-Hacker\". If not, just change the path. But don't forget to double the \ : Note: Ok, it's now only for .exe-files, but it should be the same way for .dll-files.
  15. I used a program called "WinInstall LE" and removed the autostart-entry.
  16. Hello! I would like to put daemon-tools on my Windows-XP-CD. I patched the MSI (I don't want any Shortcuts or Autostart-Entries for Daemon-Tools.) The Installation is successfull and clicking an image "Mount" and "Unmount" appears in the context-menu. BUT, to make this Entries work I have to create a virtual device in daemon-tools manually. Is there any way to do it automatically? Because I don't think that the procedure of patching the MSI, adding Reg-Tweaks etc. makes sense if I have to do something manually... I hope, anybody can help me Stephan PS: Sorry for my bad English, I'm german, but I hope, it's understandable
×
×
  • Create New...