Yes, if it asked you for login and password – it works.
Default credentials:
Login: "admin"
Password: "netxms"
Default credentials:
Login: "admin"
Password: "netxms"
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuls -la /var/lib/tomcat6/webappsTry {
"{0:F2}" -f ((Get-ChildItem $args[0] -r -ErrorAction stop | Measure-Object -property length -sum).sum / 1KB)
}
Catch {
Write-Host "0.00"
}$dirs = @("c:\DosBox", "C:\tmp")
foreach ($dir in $dirs) {
$size = "0.00"
Try {
$size="{0:F2}" -f ((Get-ChildItem $dir -r -ErrorAction stop | Measure-Object -property length -sum).sum / 1KB)
}
Catch {
}
Write-Host "DirSize($dir)=$size"
}powershell -ExecutionPolicy ByPass -File ...\script.ps1