Jump to content

cryton2707

Member
  • Posts

    6
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About cryton2707

  • Birthday 07/27/1971

Contact Methods

  • Website URL
    http://

cryton2707's Achievements

0

Reputation

  1. you could take a look at http://www.appdeploy.com/packages/detail.asp?id=627 its got lots of info on deploying nero 7 silently.
  2. you could try Autoit.. the source for what you want to do is Opt("TrayIconHide", 0) ;0=show, 1=hide tray icon $answer=msgbox(4,"Question"," Do you want to install hardware ?") if $answer = 6 Then ; value of 6 means yes pressed run("hardware.exe",@TempDir,@SW_SHOW) EndIf Exit and autoit can compile this to an .exe for you. autoit avaiable at http://www.autoitscript.com/autoit3/
  3. I belive "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" runs alaphetical order so if you put a load of aaaaaa in front of the value name it would run first. but to be honest your customers would probably find away around it. I'd be more likly to turn your exe into a service. That way its loaded at system startup.. Even before a customer logs on. (assuming they logon??) look at turnning the program into a service using sc.exe (comes as part of windows xp/2003/2000 Not NT) or use srvany.exe for programs that dont like to be truned in to a service. Thanks
  4. Hi, I did this because we needed to delete user profiles from workstations and the ntuser.dat was locked.. so by rebooting the workstation I could delete the user profiles. To do this I used Icon (http://surguy.net/articles/icron.xml) Its a windows implementation of crontab Then created an autoit script (http://www.autoitscript.com/autoit3/) to reboot the workstation and compiled to exe. In the autoit script I used a process check to see if the process "explorer.exe" was running.. If so do nothing as a user was logged on. Works really well for me. if you need any info on the script and stuff just shout Thanks
  5. Im looking fo the reg tweak that allows you to run a command everytime the command prompt is opened.. IE run the command in the command prompt every time its opened. bit like hklm/software/microsoft/windows/currentversion/run but for the command prompt. I remember seeing the key ages ago but cant remember where!??! Anyone know the key?? or a pointer to an article? Cheers
×
×
  • Create New...