Jump to content

WotC

Member
  • Posts

    128
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Austria

Everything posted by WotC

  1. hi! give bitvise winSHH a try. it installs silently and using tunnelier from bitvise (freeware) u can do ssh, sftp and sremote-desktop via ssh (u just need to forward port 22 for al that if using a router - thats nice). however, configuration is a bit of getting-used-to-it. the switches (from wihu, remove the parts that ore not of interest for u): description.8 = WinSSHD 4.03a command.8 = %wihu%\WinSSHD\WinSSHD.exe /InstallDir "%programfiles%\WinSSHD" /AcceptEULA selected.8 = 1 description.9 = Tunnelier 4.04a command.9 = %wihu%\WinSSHD\Tunnelier.exe /InstallDir "%programfiles%\Bitvise Tunnelier" /AcceptEULA selected.9 = 1
  2. unfortunatley, it didnt work for me - i tried to add the key, too - but whenever my script came to outpost, it stopped :-( switching back to AutoIT :-( nevertheless, great effort!
  3. hi honey.pot! thanks for ur explanation - sounds difficult and like do-not-try-at-home! ill give ur installer a first try today - hopefully the icon appears - and i think i forgot to change the default path - **** :-(. nevermind - ill be back and report... if it works - GREAT - if not ill stick with my autoit script (it got easier with version 3)....
  4. hi! anyone any ideas how to install Globalscape SecureFTP server? http://globalscape.com/gsftps/ Its an Installshield, i know. i created the iss file. however, return code is -3... ( http://publib.boulder.ibm.com/infocenter/i....doc/cpi116.htm ) -3: Required data not found in the setup.iss file. The problem is the install script asks for an admin password - is there any possibility to circumvent/prevent this? thanks in advance
  5. wow! this sounds nice...i think i have to reinstall my sys :-) anyway - how did u do that?
  6. i had the same problem the first few times i tried to uai DT. however, now im using Daemon_Tools.msi /qb /passive /norestart without a popup window or any problems...
  7. im installing perfect disk 7 from an msi with /qb-! do u have the msi?
  8. and how to register it silently? the install is quite easy, but now....
  9. works for me: All-in-One Codec Pack 6.0.2.7: Codec_Pack_All_in_1.exe /s
  10. and can i shrink this install, too? i only need a few out of tons of languages and end up with an admin install point size of 1.2GB :-(... whenever i tried to to an admin install point i have no options to select - everything gets "installed"
  11. Using the AutoIT script, merging the regfile into the registry BEFORE a reboot and copying the outpost ini to the install folder is a) silently and B) prevents the popup after the install... i tried it in a vm - so if anyone wants to give it a real-machine test.... [WhatsNew] history.en=1c5bf93/69706b00 This is what i THINK is important in the ini file...
  12. update: adding the following to the registry works - no config screen after a reboot. just the "whats new screen" - working on that though... Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall\General] "ICMP"=dword:00000000 "AutoUpdate"=dword:00000000 "EnableNetstatLogging"=dword:00000001 "EnableNetstatReporting"=dword:00000000 "SendRulesAtStartup"=dword:00000001 "ConfigFileName"="c:\\Outpost.cfg" [HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall\Window] "MinimizeOnClose"=dword:00000001 "MinimizeToTray"=dword:00000001 edit: i think the "whats new" can be cancelled as mentioned above... its just not history.txt but history.en in the ini file... history.en=1c5bf93/69706b00
  13. the processname is still outpostinstall.exe :-(, so the only way to achieve this is via autoit - i hate auto it scripts.... maybe the pid changes, dunno... have to check it... nevertheless, here's an autoit script that worked in a VM, although u get the config screen after the first reboot. however, this might be circumvented when u add the path to the configfile to the registry as u mentioned - i'll try that tomorrow... this script is tested with version 3.0.543.431 Opt("TrayIconDebug", 1) Opt("WinTitleMatchMode", 3) BlockInput(1) Run("OutpostProInstall.exe /sp- /verysilent /norestart") ;Cancel configuration Wizard WinWaitActive("Configuration Wizard") WinActivate("Configuration Wizard") ControlClick("Configuration Wizard", "", "Button7") ;Confirm exit WinWait("Outpost Firewall Pro") ControlClick ("Outpost Firewall Pro", "", "Button1") btw: has anybody tried the office version of outpost firewall? it should be easier to get it installed automatically, though much more expensive :-(
  14. 3.0 uses an inno based setup script, so: /sp- /verysilent /norestart helps to install. nevertheless the **** config wizard pops up afterwards. this application is really troublesome. if not for the cool features it provides i would replace it! the config wizards even pops up after adding the path to the configfile to the registry :-(
  15. ok, i'll give it a try - thanks! unfortunately, my graphics adapter is broken and i have to order a new one :-( - but as soon as i have it i'll test it!
  16. Thanks for ur reply! My problem regarding the Autologon is that is simply doesn't work! I don't know why - i tried it again an hour ago using a VM and autologon doesnt work - is weird! Maybe its because i included an autologon in my user creation vb script? or was it in my reg tweaks? maybe those two settings just interfere?
  17. Something like "BestCrypt 7.12" terminated with code_1.Could be a hint for an error. STATUS_WAIT_1 I don't have the logfile handy right now, just a screenshot where the rest is missing... I included the workdir.x= %wihu%\BestCrypt\ in my command also - i have to check it later whether it works or not... Another problem i ran into: whenever i use wihu to install my software (i'm currently trying to switch from wpi) i have problems with my autologin... this is what i start: %cdrom%\Software\wihu.exe /AutoLogon /AutoInstall=300 /Beep=30 /UseCurrent /SkipRestart /Log=%systemdrive%\Install.txt i even tried the /UserPwd=xyz switch :-( this might be a problem for me... another q: is there an option to change the order in which the install options are listed? b/c if i'm right i have to change all subsequent commands if i want to insert a single one :-(
  18. I had a quick look in the forum but couldn't find anything regarding the following problem. How do i send a command like command.0 = %wihu%\dotnetfx.exe /q /c:"install /q" Whenever i want to executea command using " i get an error :-(. is a cmd /c enough? can't try it here but will as soon as possible! or can i escape the " using \ in front of it? thanks in advance edit: strange - i gave it a try using another computer and it worked?!? the only difference was i omitted the workdir path... edit2: even stranger: command.0 = %wihu%\BestCrypt\bcrypt7.exe -S -G "Security\Bestcrypt" doesn't work!!! Anyone any ideas?
  19. I know it was asked a loooong time ago, but maybe someone has solved the problem of unattended installation in the meantime?
  20. Winrar: /S AntiSpyware: MicrosoftAntiSpywareInstall.msi /qb afterwards run: anti_spyware_install_path\gcasDtServ.exe /regserver Skype - run this as a regfile: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] "Skype"=- Office: don't start the setup.exe - use the msi! Anything else? Maybe summarize whats still missing/not working!
  21. @Nologic: Did u try to update Trillian recently? They updated the MSN client! I'm using Trillian and beside the problem that the programmers are too stupid to support native windows skins (or i'm too stupid to find them) its ok. although the startup animation SUX on mylaptop b/c it uses some kind of hardware acceleration (**** - it's just a im client - no need for fancy fading u can't turn off!!!). Furthermore its crap slow (it looks like some basic app, has a non-intuitive customization interface,...) - but nevertheless - its imo the best all-in-one solution out there atm.
  22. Compressed NTFS sounds good! Didn't even think about this! I haveto check it out. And command line is better (for my purposes) than a gui! thanks -i'l give it a try!
  23. Hmmm, sounds not to bad. I need it to shrink all of my sources for an unattended setup. some of the dirs got quite big because of admin install points :-(. i wanted to zip/rar them and mount them when i need them for an installation! i dont want to split my ua setup and im close to 4gb right now! the question is whether i can compress the files inside an iso? i dont hink so, or? and can i mount them using daemon tools via commandline?
  24. Hi! As i mentioned in the topic, i need a program to mount a compressed file as a drive like daemon tools can do with isos. is there any program that fits my purpose? thx
  25. MSI: READ MY POSTING! And its ANTIspyware, not just spyware - the spyware is Windows itself Again, use this USB attached device to double click the exe - when the install screen pops up, check the tempfolder. The exe EXPANDS an msi to the tempfolder! Look for a folder like _is1F - the msi is in that folder! And i THINK u can't automatically rearrange the icons on the desktop...
×
×
  • Create New...