Citrix Login Simulator Bypass Disclaimer Screen

Hi all,
Has anyone been able to successfully bypass the pre-login disclaimer screen which is provided by Citrix Storefront while using the Citrix Logon Simulator Management Pack/Test-CitrixApp.ps1 script.

Thanks in advance.

1 Like

Hi Slovece,

 

if you open storefront in IE and get to the disclaimer screen, right click in the acceptance button and “Inspect Element” and find the classname of the button

then add this to the login powershell test-citrixapp.ps1

$buttons = $internetexplorer.Document.body.getElementsByClassName(‘buttonclassname’)
foreach($button in $Buttons){$button.click()}

between

Open-InternetExplorer -SiteURL $SiteURL

and

Test-LoginForm

in the try box at the bottom