Kaffeeundcode
Script Library
PowerShell 11.12.2025

Script Workspace

Reset CompanyPortal

Review the purpose, inspect the code, then test it safely in your own tenant.

78_Reset-CompanyPortal.ps1

<#
.SYNOPSIS
    Resets Company Portal App (Client Side).
    
.DESCRIPTION
    Resets the app package. Run locally.

.NOTES
    File Name: 78_Reset-CompanyPortal.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

Write-Host "Resetting Company Portal..."
Get-AppxPackage *CompanyPortal* | Reset-AppxPackage
Write-Host "Done." -ForegroundColor Green