digbyp
Members
-
Joined
-
Last visited
Reputation Activity
-
digbyp got a reaction from Cristian Scarafiotti in Speed TestFor me (Powershell 2 - yes I really must update!!!), this had an error. However, the below works (as a single line)
$a=Get-Date; $web = New-Object Net.WebClient; $web.DownloadString("http://client.akamai.com/install/test-objects/10MB.bin") | out-null; $t = "$((10/((Get-Date)-$a).TotalSeconds)*8) Mbps"; $t
-
digbyp got a reaction from Paul in Speed TestFor me (Powershell 2 - yes I really must update!!!), this had an error. However, the below works (as a single line)
$a=Get-Date; $web = New-Object Net.WebClient; $web.DownloadString("http://client.akamai.com/install/test-objects/10MB.bin") | out-null; $t = "$((10/((Get-Date)-$a).TotalSeconds)*8) Mbps"; $t
-
digbyp got a reaction from Martin Stevnhoved in FEATURE REQUEST : DHCP Scope almost fullYou could monitor Event Log for event id 1020 and send notification
-
digbyp got a reaction from Paul in FEATURE REQUEST : DHCP Scope almost fullYou could monitor Event Log for event id 1020 and send notification
-
digbyp got a reaction from Chris in PowerOfTheShell Plugin 1.5I use the following code to determine if the snapin is loaded or not
# Add Exchange 2010 commandlets (if not added)
if(!(Get-PSSnapin | where-Object {$_.name -eq "Microsoft.Exchange.Management.PowerShell.E2010"}))
{
ADD-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010 -ErrorAction SilentlyContinue
}
-
digbyp got a reaction from Chris in Schedule Restart OptionThis may be of interest - a plugin to schedule re-start or shutdown
http://forum.pulseway.com/topic/952-shutdown-or-restart-scheduler-v10/#entry5192
-
digbyp got a reaction from Chris in Pulseway Installation help...As Chris says, you need to Install the appropriate Agent for your computers (http://www.pulseway.com/downloads). Once this is completed, select the Desktop Apps tab and install the Dashboard.
From the Dashboard, you can connect to the Agents and Remote Control.
Hope this helps
Paul
-
digbyp got a reaction from Chris in Ability to Export NotificationsFound it - you are referring to the Dashboard and not the App
-
digbyp got a reaction from Paul in Notifications did not workProbably not the reason - but notifications do not work when computer is in maintenance mode
-
digbyp got a reaction from Cptrico in PC Monitor Config Plugin v1.1PC Monitor Users,
Herewith my PC Monitor Config Plugin for Windows computers only!
You know how you can go into PCM Client and check/tick boxes etc. Well, now you can do it from your Device. Not everything is covered, but a lot is. The code behind the plugin, is simply changing registry values within the PC Monitor section in the registry.
Update
Have attached v1.1 with a few modifications
MobilePCMonitorConfigurator v1_1.zip
-
digbyp got a reaction from Matt in Scheduled Task Start TimeIn addition - success or failure indicator of last time run
-
digbyp got a reaction from Marius in REQ: Auto Status RemovalIn settings, there is a 'Clear badges on exit' toggle. However, they will re-appear again if the issue is not resolved. Hope this makes sense
-
digbyp got a reaction from Paul in PC Monitor Config Plugin v1.1PC Monitor Users,
Herewith my PC Monitor Config Plugin for Windows computers only!
You know how you can go into PCM Client and check/tick boxes etc. Well, now you can do it from your Device. Not everything is covered, but a lot is. The code behind the plugin, is simply changing registry values within the PC Monitor section in the registry.
Update
Have attached v1.1 with a few modifications
MobilePCMonitorConfigurator v1_1.zip
-
digbyp got a reaction from Marius in PC Monitor Config Plugin v1.1PC Monitor Users,
Herewith my PC Monitor Config Plugin for Windows computers only!
You know how you can go into PCM Client and check/tick boxes etc. Well, now you can do it from your Device. Not everything is covered, but a lot is. The code behind the plugin, is simply changing registry values within the PC Monitor section in the registry.
Update
Have attached v1.1 with a few modifications
MobilePCMonitorConfigurator v1_1.zip
-
digbyp got a reaction from Paul in Exchange 2013Were you looking for an automated system? There are two choices I can think of
a) Using Power of the Shell plugin which would allow a manual check
Writing your own plugin that would auto check
Paul
-
digbyp got a reaction from Cptrico in PowerOfTheShell Plugin 1.5You place config.xml in the same directory where you placed poweroftheshell.dll
-
digbyp got a reaction from Paul in Create plugin in Visual Studio (vb)Thanks for for the changes that you made for me - much more friendly now!
I myself, have now expanded upon your original, by expanding some sections and added a new video card section. Have attached the plugin
PaulCsiki.SystemInfoPluginCS.zip
-
digbyp reacted to Paul in Create plugin in Visual Studio (vb)Due to request I have updated the plugin to support paged view. Both projects (VB and CS) support paged view configuration.
Paul.
Edit: I have fixed a mistake in the plugin. I was requiring an invalid pc monitor version. Download the new release.
PaulCsiki.SystemInfoPlugin.zip
-
digbyp got a reaction from Marius in Computer Serial NumberAlternatively, you could make use of a plugin named Power of the Shell http://forum.pulseway.com/topic/274-poweroftheshell-plugin-14/
I have copied below a script that will display the Make, Model, Serial, Chasis Type, Computer Name, Owner and Domain. Follow the instructions in the link provided. If stuck, Johnni or I can assist further.
# Start of Script
$info = get-wmiobject -query "Select * from win32_computersystem"
$info2 = get-wmiobject -query "Select * from win32_bios"
$z = $info2.SerialNumber
$system = Get-WMIObject -class Win32_systemenclosure
$type = $system.chassistypes
$a = Switch ($Type)
{
"1" {"Chassis : $Type - Other"}
"2" {"Chassis : $type - Virtual Machine"}
"3" {"Chassis : $type - Desktop"}
"4" {"Chassis : $type - Low Profile Desktop"}
"5" {"Chassis : $type - Pizza Box"}
"6" {"Chassis : $type - Mini Tower"}
"7" {"Chassis : $type - Tower"}
"8" {"Chassis : $type - Portable"}
"9" {"Chassis : $type - Laptop"}
"10" {"Chassis : $type - Notebook"}
"11" {"Chassis : $type - Handheld"}
"12" {"Chassis : $type - Docking Station"}
"13" {"Chassis : $type - All-in-One"}
"14" {"Chassis : $type - Sub-Notebook"}
"15" {"Chassis : $type - Space Saving"}
"16" {"Chassis : $type - Lunch Box"}
"17" {"Chassis : $type - Main System Chassis"}
"18" {"Chassis : $type - Expansion Chassis"}
"19" {"Chassis : $type - Sub-Chassis"}
"20" {"Chassis : $type - Bus Expansion Chassis"}
"21" {"Chassis : $type - Peripheral Chassis"}
"22" {"Chassis : $type - Storage Chassis"}
"23" {"Chassis : $type - Rack Mount Chassis"}
"24" {"Chassis : $type - Sealed-Case PC"}
Default {"Chassis : $type - Unknown"}
}
"Make : " + $info.Manufacturer
"Model : " + $info.Model
"Serial : " + $z
"" + $a
"Name : " + $info.Name
"Owner : " + $info.PrimaryOwnerName
"Domain : " + $info.Domain
# End of script
-
digbyp got a reaction from Cptrico in Scheduled Task Start TimeIn addition - success or failure indicator of last time run
-
digbyp got a reaction from Marius in Command For All DevicesAn alternative in the meantime, is to use the Powershell plugin.
You could read from a txt file containing all the computer names and then run a command against all those computer names. May need to think about credentials, but could work.
-
digbyp got a reaction from Paul in SMART StatusAlthough not automatic, you can you use the powershell line below which will show true or false. If True, anticipate disk failure at some point.
gwmi -Namespace root\wmi -Class MSStorageDriver_FailurePredictStatus -property PredictFailure
-
digbyp got a reaction from Marius in how to use pcmonitor from outside of networkIndeed. For those who have more than one computer to manage, you can change the UDP port number within the client and then you can port forward on router to more tnah one internal computer
-
digbyp got a reaction from Cptrico in Enter maintenance mode via cmdOr, you could use the Powershell Plugin (Poweroftheshell) to change the registry.
http://forum.pulseway.com/topic/274-poweroftheshell-plugin-12/
-
digbyp got a reaction from Cptrico in Execute installation filesYou could install the 'Power of the Shell' (POTS) plugin and write a Powershell script to tun the installer. However, you need to get at that machine to install POTS first. But then you installed PCM. Or, did you prep machine and then despatch it somewhere?
Additionally, you could use the terminal option within PCM and run the commands to install the software silently (no user prompts required).