Rimo3 API - Modernize an App

A step-by-step guide to use the Rimo3 Workspace360 API to modernize an application to a desired format using Package360.

Convert to MSIX

After completing application onboarding and testing against your desired OS, you can initiate the process of converting the application to an MSIX.

This article guides you through the process of obtaining an Application ID.

The script below references variables previously created in the following article.

$ModernizeBody = @{
    "modernizeToType" = 0 #determines the package type
    "overwrite" = "true"
 }

$ModernizeBodyJSON = $ModernizeBody | ConvertTo-Json

$ModernizeHeader = @{
    Authorization = "Bearer $token"
    "Content-Type" = "application/json"
}

$ModernizeParameters = @{
    Method = "POST"
    Uri = "$($server_uri)/api/v2/application-packages/$Appid/modernize"
    Headers = $MSIXConvertHeader
    Body = $ModernizeBodyJSON
}


$ModernizeResponse = Invoke-RestMethod @ModernizeParameters
$ModernizeResponse 

This returns a Sequence ID that you can use to track the progress of the conversion process.

See this article to understand how you can interact with sequences. 

If you want to capture the same application as an alternative modern format then simply change the modernizeToType variable to:

Something missing from this page or want to give feedback?