Forum Discussion
Is there any way to open company portal automatically using powershell or any script
- May 04, 2024
Hi shambari! You can try using the commands below depending on what you want:
# Will start the Company portal app
start companyportal:
# Will start the Company portal app and go to a specific application, just switch out the X-X-X-X to an Applicationid in your tenant
start companyportal:Applicationid=<X-X-X-X>
Hi shambari! You can try using the commands below depending on what you want:
# Will start the Company portal app
start companyportal:
# Will start the Company portal app and go to a specific application, just switch out the X-X-X-X to an Applicationid in your tenant
start companyportal:Applicationid=<X-X-X-X>
- tobiassandbergMay 06, 2024Iron Contributor
Thanks shambari! For automatically install, please see the following article: https://www.systanddeploy.com/2022/09/run-application-from-company-portal.html?m=0
The command looks like this:start-process companyportal:ApplicationId=YourAppID sleep 10 [void][System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms') [System.Windows.Forms.SendKeys]::SendWait("^{i}")
- shambariMay 21, 2024Copper ContributorHello tobiassandberg this method is working so good but, please is there any way to open it on mode background.
thanks - shambariMay 07, 2024Copper Contributorthank you tobiassandberg