Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!
hi @user02 thank you for replying i am assigned a task to create connect before logon Global Protect (VPN) package and deploy it through SCCM. these are two execution commands that works on my local machine.
reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Palo Alto Networks\GlobalProtect\CBL" /f /t REG_SZ /v "Portal1" /d "pagp.cority.com" i need help to create a sccm application or package using these two commands in sccm to deploy
Created a script package to run a cmd which included he following. Prior to doing that, you should manually craft the registry settings and export as GlobalProtectCBL.reg
REM - run GP installer
msiexec /i "GlobalProtect64.msi" /quiet PORTAL="xxxwebvpn-useast.xxx.com" CONNECTMETHOD="on-demand"
REM - run PanGPS.exe -registerplap
"C:\Program Files\Palo Alto Networks\GlobalProtect\PanGPS.exe" -registerplap
REM - install registry setting change
reg import GlobalProtectCBL.reg