Jump to content

Mike_Wilson

Member
  • Posts

    142
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Posts posted by Mike_Wilson

  1. I was thinking of creating a program which contained all registry tweaks, would be a nice interface with checkboxes for the user to select the tweaks and then compile the reg file at the end.

    I was wondering if you think this could be useful or not bother, wouldnt want to create a program no one would use. I like to have the opinion of the people I set off :) im mike btw the guy who created the original unattended site which I gave to aaron.

    anyways any ideas etc shot em in here plz.

    mike

  2. yes there is a way to do it with RegisterServiceProcess API but this only works on 9x as you stated and the following error on NT based: Cant find Dll entry point.

    My friend is testing a process scanner to check what programs are running and he said if anything is run it will be picked up, I said if the process is hidden then it wont be found by his scanner which is what im trying to do.

    I got some code which will hide the process and rename them to different process names such as explorer etc, I have being trying to change this so it will hide an external exe, Ive attached it if anyone wants a look.

    thx for any help

    mike

    icanhide.zip

  3. Silent Install

    /s switch

    i.e. = setup.exe /s

    Register

    Import this into registry

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SOFTWARE\SlySoft\AnyDVD\Key]
    "Key"=

    Kill Process After Install

    pskill anydvd.exe

    Remove From Windows Startup

    Import this into registry

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    "AnyDVD"="-"

  4. try

    ;Put my computer, my network places, my documents on the desktop
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
    "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
    "{450D8FBA-AD25-11D0-98A8-0800361B1103}"=dword:00000000
    "{208D2C60-3AEA-1069-A2D7-08002B30309D}"=dword:00000000
    "{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000000

    ;Sorts My Computer Above My Documents
    [HKEY_CLASSES_ROOT\CLSID\{450D8FBA-AD25-11D0-98A8-0800361B1103}]
    "SortOrderIndex"=dword:00000054

    or if you only want to set it on your account use

    ;Put my computer my network places my documents on the desktop
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
    "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
    "{450D8FBA-AD25-11D0-98A8-0800361B1103}"=dword:00000000
    "{208D2C60-3AEA-1069-A2D7-08002B30309D}"=dword:00000000
    "{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000000

    ;Sorts My Computer Above My Documents
    [HKEY_CLASSES_ROOT\CLSID\{450D8FBA-AD25-11D0-98A8-0800361B1103}]
    "SortOrderIndex"=dword:00000054

    should work

  5. To delete items from the startmenu there are two ways one in which to delete a shortcut on its own and the second being a sub folder with shortcuts in it.

    Single Shortcut

    Example is deleting the Windows Movie Maker shortcut in the start menu

    DEL "%AllUsersProfile%\Start Menu\Programs\Windows Movie Maker.lnk"

    Shortcut in Folder (wanting to delete whole folder)

    Example is deleting the K-Lite Codec folder from my start menu after I have silently installed it.

    RD /S /Q "%AllUsersProfile%\Start Menu\Programs\K-Lite Codec Pack"

  6. The default for xp is bliss which is located in

    C:\WINDOWS\Web\Wallpaper

    along with the other default wallpapers.

    You can set a reg key in your unattended so it sets your wallpaper.

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "Wallpaper"="C:\\WINDOWS\\web\\wallpaper\\Bliss.bmp"
    "WallpaperStyle"="2"

    Change the line

    "Wallpaper"="C:\\WINDOWS\\web\\wallpaper\\Bliss.bmp"

    to the path of your wallpaper

    Stretched wallpaper style is

    "WallpaperStyle"="2"

    Tiled wallpaper style is

    "WallpaperStyle"="1"

    IF YOU WANT TO SET THIS WALLPAPER ONLY ON YOUR ACCOUNT USE THE KEY "HKEY_CURRENT_USER" OTHERWISE USING "HKEY_LOCAL_MACHINE" WILL SET THE WALLPAPER ON ALL ACCOUNTS

    hope this helps

    Mike

×
×
  • Create New...