Jump to content

Doc Symbiosis

Member
  • Posts

    333
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Posts posted by Doc Symbiosis

  1. You could have a try with autohotkey ( http://www.autohotkey.com ). It a little but very effectiv helper. When you search a little, you'll find a lot of existing scripts.

    The following link leads to the project of ct ( Unfortunately everything is in german.)

    But you only have to download actiaid with the following link, install it and install autohotkey

    Contained are a lot of useful functions, which are known from Mac-OS or Linux, such as highlighting copy/paste with the mouse or a plugin, so that you can run commands through typing in the explorer address bar ( Very useful, I thnik).

    The fine thing with autohotkey is, that you can learn very fast to write your own scripts, so that you can customize them very well for your own needs.

  2. I think that you're in the totally wrong forum.

    Perhaps have a try and make a post in the application forum.

    Unfortunately I can't give you a hint to an appropriate software, searched for the same thing a few years ago without any luck.

  3. When you import the regiostry settings through cmdlines.txt, the reg-settings referring to HKCU are taken for every new created user, because at this moment, only the default user exists. When you want to do it at a later moment,, you've got to import the settings to HKU\.Default, then the settings are taken for every user, who didn't login till now.

  4. How does one go about removing "search..." from folder context menus?

    Delete the following key: HKCR\Directory\shell\find

    How does one go about removing "format" from drive context menus?
    Delete the following key:

    HKCR\*\shellex\ContextMenuHandlers\{a2a9545d-a0c2-42b4-9708-a0b2badd77c8}

    How does one go about removing "create shortcut," "delete" and "rename" from my computer context menu?

    I'm still looking for these...

    Hope this helped a little.

  5. I'm trying to get a list of my drives in a batch to automate the process of assigning drive letters. When I type 'fsutil fsinfo drives' in comman line, I get a list of my drives.

    C:\>fsutil fsinfo drives
    Drives: A:\ C:\ D:\ E:\ F:\ G:\

    But in a for loop, I only get the first drive letter. Anybody knows, what's wrong in the for construction?

    C:\>for /F "tokens=*" %i in ('fsutil fsinfo drives') Do echo %i
    C:\>echo Drives: A:\
    Drives: A:\

  6. You could use the following regtweak, which not only disables the search assistant, but also uses advanced search:

    ;-----  Disable "Search Dog" and use advanced search
    [HKEY_CURRENT_USER\Software\Microsoft\Search Assistant]
    "Actor"=""
    "SocialUI"=dword:00000000
    "UsageCount"=dword:00000000
    "UseAdvancedSearchAlways"=dword:00000001

    If you just use the first two lines, you only disable the search assistant and use the normal search function.

  7. The question is, what the difference of the 2 computers to the others is. Do you made any other settings on the two computers, on which WPI fails to run?

    Is the drive letter of the CDROM detected?

    And what exactly is the error on the two computers? Does WPI fail to start or do the apps seems to install, but doesn't?

  8. The following three lines in a batch should do the job

    netsh interface ip set address source=static name= "Local Area Connection" addr=192.168.1.120 mask=255.255.255.0 gateway=192.168.1.1 1
    netsh interface ip set dns "Local Area Connection" static 167.206.3.208 primary
    netsh interface ip set dns "Local Area Connection" static 167.206.3.207 secondary

  9. I wanted to say, that I don't know a way to change TCP/IP settings through registry, but out of runonceex you could call use a batch, in which you use the netsh interface ip command, which is a command to configure the network settings.

    So what exactly do you want to do?

  10. I don't know, from where you call the start.cmd, but perhaps the following brings in a little light:

    The Unattended-Guide uses the cmdlines.txt to import the regtweks, because at that moment, there only exists the default user and so all the tweaks, even those concerning HKCU are deployed for every user.

    Are in you're way none of the tweaks applied or perhaps only to the current user? And it would be helpful to know, from where the start.cmd is called.

×
×
  • Create New...