How To: Change the Portal View Promotion URL Setting

View Current URL

To view the current URL use Powershell + SMLets:

(Get-SCSMObject -Class (Get-SCSMClass Cireson.Analyst.Web.Console.Settings)).PromoteViewConnectionString

Update URL

To change the URL use Powershell + SMLets:

Get-SCSMObject -Class (Get-SCSMClass Cireson.Analyst.Web.Console.Settings) | Set-SCSMObject -Property PromoteViewConnectionString -Value http://myserver/PromoteViewWebService.asmx

Note: Change the "myserver" to the name of your Cireson Portal server.

Remove and Reset Promoted URL

To remove and reset the URL use Powershell + SMLets:

$so = Get-SCSMObject -id 32ddc0a5-5910-958f-9cec-fb4645295a82 
Set-SCSMObject $so -Property PromoteViewConnectionString -Value $null

When you go to promote another view, you will again be prompted to enter a new URL to promote the view to.Â