Public Files
Info about this page
https://wiki.enlogic.gr/Customers/EnLogic/AboutPublicFiles
(You need to ask ndemou to add or update the attachments)
Open an
Admin PowerShell and run these commands (they allow execution of PowerShell scripts, install PowerShell windows update module, and
download code from our wiki)
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
powershell -exec bypass -c ". {iwr -useb https://wiki.enlogic.gr/pub/KnowledgeBase/PublicFiles/Install-PrepLapCode.ps1}|iex"
Example of how to download and use some scripts
monitor-tcp-port-conns.ps1 --
Watch-PortConnectionsLive
mkdir C:\it\bin -force > $null; iwr -useb https://wiki.enlogic.gr/pub/KnowledgeBase/PublicFiles/monitor-tcp-port-conns.ps1 -out c:\it\bin\monitor-tcp-port-conns.ps1
. C:\it\bin\monitor-tcp-port-conns.ps1 # dot-source it to have access to the commands it provides like Watch-PortConnectionsLive
$output = Watch-PortConnectionsLive; $output | ft
server-QC-checks.ps1
mkdir C:\it\bin -force > $null; iwr -useb https://wiki.enlogic.gr/pub/KnowledgeBase/PublicFiles/server-QC-checks.ps1 -OutFile c:\it\bin\server-QC-checks.ps1; . c:\it\bin\server-QC-checks.ps1
Run-DismSfc.ps1
mkdir C:\it\bin -force > $null; iwr -useb https://wiki.enlogic.gr/pub/KnowledgeBase/PublicFiles/server-QC-checks.ps1 -OutFile c:\it\bin\Run-DismSfc.ps1; . c:\it\bin\Run-DismSfc.ps1
-