Initial commit

This commit is contained in:
Laurence Horrocks-Barlow 2026-05-19 00:35:27 +01:00
commit 6bf433c9a9
20 changed files with 1162 additions and 0 deletions

View file

@ -0,0 +1,13 @@
function Disconnect-GpfsServer {
[CmdletBinding()]
param()
if (-not $script:GpfsSession) {
Write-Warning 'No active GPFS session.'
return
}
$server = $script:GpfsSession.Server
$script:GpfsSession = $null
Write-Host "Disconnected from GPFS server: $server" -ForegroundColor Yellow
}