# Run PowerShell as Administrator
Install-Module -Name UniversalDashboard.Community
# Check PowerShellGet version
Get-Module -Name PowerShellGet -ListAvailable
# If you do not have PowerShellGet version 2.0 or higher
Install-Module -Name PowerShellGet -Force
# Check PowerShellGet version
Get-Module -Name PowerShellGet -ListAvailable
# Delete old version of PowerShellGet
# for x64
Get-ChildItem -Path 'C:\Program Files\WindowsPowerShell\Modules\PowerShellGet'
Remove-Item -Path 'C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1' -Recurse -Force
# for x86
Get-ChildItem -Path 'C:\Program Files (x86)\WindowsPowerShell\Modules\PowerShellGet'
Remove-Item -Path 'C:\Program Files (x86)\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1' -Recurse -Force
# Copy new version from x64 to x86
Copy-Item -Path 'C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\' -Destination 'C:\Program Files (x86)\WindowsPowerShell\Modules\PowerShellGet\'
# Copy new version from x86 to x64
Copy-Item -Path 'C:\Program Files (x86)\WindowsPowerShell\Modules\PowerShellGet\' -Destination 'C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\'
# Close the PowerShell session and reopen it
# Install the universal dashboard community module
# If you run into a command already available error, explicitly allow the new module to override the existing commands by using the -AllowClobber
Install-Module -Name UniversalDashboard.Community -AllowClobber
# Check
Get-Module UniversalDashboard.Community
“No problem can be solved from the same level of consciousness that created it.” Albert Einstein (1879-1955)
Tuesday, 1 July 2025
Setup PowerShell Universal Dashboard
Subscribe to:
Post Comments (Atom)
Setup PowerShell Universal Dashboard
# Run PowerShell as Administrator Install-Module -Name UniversalDashboard.Community # Check PowerShellGet version Get-Module -Name PowerShel...
-
//convert BASE64 string to Byte{} array function base64ToArrayBuffer(base64) { var binaryString = window.atob(base64); var binar...
-
var htmlToPdf = new NReco.PdfGenerator.HtmlToPdfConverter(); htmlToPdf.PageFooterHtml = @"<div style='text-align:right; font-s...
-
static void Main(string[] args) { // create a dummy list List<string> data = GetTheListOfData(); // split the lis...
No comments:
Post a Comment