Jump to content

digbyp

Members
  • Posts

    82
  • Joined

  • Last visited

Posts posted by digbyp

  1. From what i remember, the first three computers (not Server) are FREE.

     

    If you have only 1 computer, why are you trying to upgrade to more than 1 computer?

  2. I have been using scheduled tasks for a long while now with PCM and not noticed it not to work.

     

    If you are sure it does not work, perhaps turning on the diagnostic logs and testing and then sending results to PCM support to look into.

  3. PC 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

  4. With the help of Paul Csiki (another forum member), I did write a plugin that currently allows you to change the settings below. Of course these can be done via Dassboard and PC Monitor Manager

     

    Computer Name

    Group Name

    Enable/Disable Debig Log

    Disable Auto Update

    Enable/Disable File Delete

    Enable/Disable Hardware List

    Enable/Disable Perf Counter History

    Enable/Disable File Browsing

    Enable/Disable User Support

    Enable/Disable WOL Over Internet

    WOL Port

    Low Memory Percentage

    Enable/Disable Maintenance Mode

    Unit of Measure

    Server Address

    Events Per Page

  5. Were 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

    B) Writing your own plugin that would auto check

     

     

    Paul

  6. In answer to the first question, the original plugin was for a different version and plugin was updated by Paul Csiki. Please download again. Alternatively, you could download my version (digbyp).

     

    We have also discovered (and have the fix already) whereby if one of the fields is 'blank' the plugin will not show to use. I only discovered this when i was adding more to my verson and Paul Csiki provided the resolution

     

    regards

     

    Paul Digby

  7. Alternatively, 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

×
×
  • Create New...