+ Post New Thread
Results 1 to 15 of 15
Educational Software Thread, Silent Switch Finder in Technical; Hi, I'm looking for a piece of software to find the silent switches in a setup.exe file if anybody can ...
  1. #1

    Join Date
    Mar 2009
    Posts
    23
    Thank Post
    3
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Silent Switch Finder

    Hi, I'm looking for a piece of software to find the silent switches in a setup.exe file if anybody can help

    Thanks

  2. IDG Tech News
  3. #2

    SYNACK's Avatar
    Join Date
    Oct 2007
    Posts
    10,166
    Blog Entries
    9
    Thank Post
    749
    Thanked 2,455 Times in 2,087 Posts
    Rep Power
    688
    The usual way to find these switches is to run

    setup.exe /?

    or

    look up the specific app online on somewhere like appdeploy.com now http://www.itninja.com/software/brow...hTips=WithTips

  4. #3


    Join Date
    Oct 2006
    Posts
    3,265
    Thank Post
    182
    Thanked 337 Times in 268 Posts
    Rep Power
    129
    As above appdeploy is the best place. Otherwise the main switches are S Q slient quiet VS VQ A N

  5. #4


    Join Date
    Feb 2007
    Location
    51.405546, -0.510212
    Posts
    5,955
    Thank Post
    180
    Thanked 1,797 Times in 1,340 Posts
    Rep Power
    468
    I think this is the app @the_wuigi is after.


  6. Thanks to Arthur from:

    dhicks (4th October 2012)

  7. #5

    Join Date
    Mar 2009
    Posts
    23
    Thank Post
    3
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    That's the very one Arthur, used to have it but can't find it anywhere.


    Quote Originally Posted by Arthur View Post
    I think this is the app @the_wuigi is after.


  8. #6
    morganw's Avatar
    Join Date
    Apr 2009
    Location
    Cambridge
    Posts
    797
    Thank Post
    46
    Thanked 123 Times in 117 Posts
    Rep Power
    35

  9. #7

    Join Date
    Mar 2009
    Posts
    23
    Thank Post
    3
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    What I really want to do is deploy symantec endpoint client to my cc3 machines but don't know the correct parametres to put in the ini file.




  10. #8
    morganw's Avatar
    Join Date
    Apr 2009
    Location
    Cambridge
    Posts
    797
    Thank Post
    46
    Thanked 123 Times in 117 Posts
    Rep Power
    35
    That will all be custom.exe switches, you will have to consult the Sophos documentation... but here's one I made earlier (designed for MDT so you may find the share authentication unnecesary).

    Code:
    @echo off
    
    echo Authenticating to \\Sophos\SophosUpdate as user SCHOOL\sophosinstalluser
    net use \\Sophos\SophosUpdate /user:"SCHOOL\sophosinstalluser" passwordhere
    
    echo Running Sophos installer with credentials for user SCHOOL\sophosinstalluser
    start /wait \\Sophos\SophosUpdate\CIDs\S000\SAVSCFXP\Setup.exe -s \ -user "SCHOOL\sophosinstalluser" -pwd "passwordhere" -mng yes -g "\Sophos\Global Group\Computer Group"
    
    echo Running Sophos update process
    REM Check for 32bit or 64bit OS and switch to the correct location for the update utility
    reg query HKLM\Hardware\Description\System\CentralProcessor\0 /c /f "x86" > nul:
    
    If %ERRORLEVEL% == 0 (
        echo System is 32bit
        start /b "%PROGRAMFILES%\Sophos\AutoUpdate\ALUpdate.exe -ManualUpdate"
    ) ELSE (
        echo System is 64bit
        start /b "%PROGRAMFILES(X86)%\Sophos\AutoUpdate\ALUpdate.exe -ManualUpdate"
    )
    
    
    :loop
    
    tasklist /nh /fi "imagename eq ALUpdate.exe" | find /i "ALUpdate.exe" >nul && (
    	echo ALUpdate.exe is running, waiting for it to finish
    	timeout 10
    	goto loop
    ) || (
    	echo ALUpdate.exe process has ended.
    )

  11. #9
    morganw's Avatar
    Join Date
    Apr 2009
    Location
    Cambridge
    Posts
    797
    Thank Post
    46
    Thanked 123 Times in 117 Posts
    Rep Power
    35
    Although that's actually for completely the wrong product and I should learn to read, but you get the idea.

  12. #10

    synaesthesia's Avatar
    Join Date
    Jan 2009
    Location
    Northamptonshire
    Posts
    4,108
    Blog Entries
    14
    Thank Post
    400
    Thanked 593 Times in 471 Posts
    Rep Power
    302
    Quote Originally Posted by the_wuigi View Post
    What I really want to do is deploy symantec endpoint client to my cc3 machines but don't know the correct parametres to put in the ini file.
    With all due respect, why not use RMVP5 with all that hassle done for you...

  13. #11
    morganw's Avatar
    Join Date
    Apr 2009
    Location
    Cambridge
    Posts
    797
    Thank Post
    46
    Thanked 123 Times in 117 Posts
    Rep Power
    35

  14. #12

    Join Date
    Mar 2009
    Posts
    23
    Thank Post
    3
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    I will have a play with this tomorrow, i can actually get the product to allocate out to stations just using a bog standard cc3 ini file but can't get it to allocate quietly or silently, users would be able to cancel the install from running.

    Quote Originally Posted by morganw View Post

  15. #13

    Join Date
    Mar 2009
    Posts
    23
    Thank Post
    3
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    When I say bog standard it does stipulate the setup.exe

    Quote Originally Posted by the_wuigi View Post
    I will have a play with this tomorrow, i can actually get the product to allocate out to stations just using a bog standard cc3 ini file but can't get it to allocate quietly or silently, users would be able to cancel the install from running.

  16. #14


    Join Date
    Feb 2007
    Location
    51.405546, -0.510212
    Posts
    5,955
    Thank Post
    180
    Thanked 1,797 Times in 1,340 Posts
    Rep Power
    468
    The RMVP5 CC3 package from RM uses the SEP MSI.

    Code:
    [Package]
    Description=RMVP5.1 for Computers
    OS=5.WS,5.2WS,
    WIPackage=SYMANTEC ANTIVIRUS.MSI
    Reboots=1
    AddCommand=RUNLIVEUPDATE=0 SYMPROTECTDISABLED=0 ADDLOCAL=Core,SAVMain,PTPMain,COHMain
    UninstallCommand=REBOOT=FORCE

  17. #15
    morganw's Avatar
    Join Date
    Apr 2009
    Location
    Cambridge
    Posts
    797
    Thank Post
    46
    Thanked 123 Times in 117 Posts
    Rep Power
    35
    Maybe the MSI file extracts from the .exe. Might be worth checking %temp% while the installer is running.

SHARE:
+ Post New Thread

Similar Threads

  1. Silent (or quiet) 48 port gigabit switch for classroom?
    By matthewls in forum Wireless Networks
    Replies: 5
    Last Post: 23rd March 2012, 12:46 AM
  2. Silent (or quiet) 48 port gigabit switch for classroom?
    By matthewls in forum Wired Networks
    Replies: 5
    Last Post: 23rd March 2012, 12:46 AM
  3. Silent Fans for Switches ?
    By ICTNUT in forum Wireless Networks
    Replies: 15
    Last Post: 21st August 2008, 03:07 PM
  4. How to use the quiet silent switch to deploy software through group policy
    By thom in forum Network and Classroom Management
    Replies: 5
    Last Post: 13th August 2008, 05:31 PM
  5. Silent Cisco Switch
    By FN-GM in forum Wireless Networks
    Replies: 4
    Last Post: 2nd August 2008, 12:22 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •