Louwrens
Members
-
Joined
-
Last visited
Reputation Activity
-
Louwrens got a reaction from DCPC Tech in Asset Information: Request for MORE InfoPlease can the following additional criteria be added to the Asset Info Checks/Results: (Pre-requisite for Custom Reporting
1. Motherboard:
a) SMBIOS AssetTag
b) Total/Free Memory Slots
2. Memory
a) Make, Module, Capacity. DeviceLocator
2. Network Interface Cards:
a) Manufacturer and Model Number
b) MAC Address
c) Last known internal ip
d) Link Speed
e) Magic Packet Enabled
3. GPU
a) Manufacturer and Model Nr
b) Current Resolution
c) Current RefreshRate
4. USB
a) USB Ports Present/Disabled
b) USB Bus Speed capabilities
5. Drives
a) HDD or SSD
b) Make, Model, Capacity
6. Optical Drive
a) Present / None
b) Make and Model Nr
-
Louwrens got a reaction from BartB in Asset Info - Bug - Agent missing all BIOS and System InfoThank you Chris. This is not a bug then as it turns out the problem is with WMI like you said.
How can we move this post from the "Bugs" section to the Knowledge base?
The computer were failing with error "Alias not found" when typing in wmic WITH and WITHOUT specifying any queries.
The wmic command itself was able to run and c:\windows\system32\Wbem was listed in the path
WINmgmt /verifyrepository - WMI repository shows consistent
But when running (WMImgmt.msc) WMI Mangement console -> Right Click WMI Control -> Properties, there were errors: W32 WMI "invalid class" and "invalid path"
Fixed this with the below batch file found on some site that I cant remember
__________________________________________________________________________
@ECHO OFF
sc config winmgmt start= auto
reg add HKLM\SOFTWARE\Microsoft\Ole /v EnableDCOM /t REG_SZ /d "Y" /f
reg add HKLM\SOFTWARE\Microsoft\Ole /v LegacyAuthenticationLevel /t REG_DWORD /d "2" /f
reg add HKLM\SOFTWARE\Microsoft\Ole /v LegacyImpersonationLevel /t REG_DWORD /d "3" /f
reg delete HKLM\SOFTWARE\Microsoft\Ole /v DefaultLaunchPermission /f
reg delete HKLM\SOFTWARE\Microsoft\Ole /v MachineAccessRestriction /f
reg delete HKLM\SOFTWARE\Microsoft\Ole /v MachineLaunchRestriction /f
NET STOP SharedAccess
NET STOP winmgmt
CD %WINDIR%\System32\Wbem\Repository
DEL /F /Q /S %WINDIR%\System32\Wbem\Repository\*.*
CD %WINDIR%\system32\wbem
REGSVR32 /s %WINDIR%\system32\scecli.dll
REGSVR32 /s %WINDIR%\system32\userenv.dll
MOFCOMP cimwin32.mof
MOFCOMP cimwin32.mfl
MOFCOMP rsop.mof
MOFCOMP rsop.mfl
FOR /f %%s IN ('DIR /b /s *.dll') DO REGSVR32 /s %%s
FOR /f %%s IN ('DIR /b *.mof') DO MOFCOMP %%s
FOR /f %%s IN ('DIR /b *.mfl') DO MOFCOMP %%s
MOFCOMP exwmi.mof
MOFCOMP -n:root\cimv2\applications\exchange wbemcons.mof
MOFCOMP -n:root\cimv2\applications\exchange smtpcons.mof
MOFCOMP exmgmt.mof
NET STOP Cryptsvc
DEL /F /Q /S %WINDIR%\System32\catroot2\*.*
DEL /F /Q C:\WINDOWS\security\logs\*.log
NET START Cryptsvc
cd c:\windows\system32
lodctr /R
cd c:\windows\sysWOW64
lodctr /R
WINMGMT.EXE /RESYNCPERF
msiexec /unregister
msiexec /regserver
REGSVR32 /s msi.dll
NET START winmgmt
NET START SharedAccess
______________________________________________________________________________
-
Hi @Louwrens,
If Pulseway fails to read this data from your monitored systems, then it is not shown in report. Please verify that there are no issues with WMI on your monitored system.
-
Louwrens reacted to Chris in Mobile Remote Desktop - Copy and Paste TextHi @Louwrens,
Thank you for your suggestion. I have logged it as a feature request, therefore our developers will consider the possibility to introduce this functionality into the future.
-
Louwrens reacted to spicysupport in RebootIt would be good to have a option to reboot an endpoint in safe mode with Pulseway running
helps with fixing issues etc
-
Hi @Spicy Support,
Currently this option is available for PowerShell scripts if the PowerShell impersonation is configured from the Pulseway Manager -> Settings -> Runtime on the remote system on which this script will run.
Note: this script will still be executed in session zero with no GUI.
Alternatively you may deploy PsExec on your systems to interact with user session with GUI. For more details abut this, please check out this post:
-
Louwrens got a reaction from Ahmet Eroglu in Interactive ReportsI know this would be a major change in the reporting interface, but how about an option to interact with the results of a report.
Maybe one can choose an additional "Report Format" when editing a report and have an option for Interactive?
When this is enabled the output of the report is immediately displayed in web format with hyperlinks to automate certain tasks by sending a back-end task/script to the agent.
For example:
Report Interaction Script Task (Relayed to the agent)
Applications link next to each agent to uninstall the application
Assets link to create asset tag if none exist
OS Patching link to assign Policy / Update now
3rd Party Patching link next to each agent to update the application
Drive Usage link to run a temp files cleanup job
Anti-virus install AV / Run Scan / Update (not sure how this ties in to the existing Kaspersky deployment)
...