Skype for Desktop – 8.49.0.49

email me

New Skype for Desktop (Windows) is available here:

https://go.skype.com/windows.desktop.download  mirror

 

Size

59.7 MB


Silent Install

setup.exe /VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH -ms


Silent Uninstall

“C:\Program Files (x86)\Microsoft\Skype for Desktop\unins000.exe” /SILENT


Registry

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Skype_is1]
“Inno Setup: Setup Version”=”5.6.1 (u)”
“Inno Setup: App Path”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop”
“InstallLocation”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\”
“Inno Setup: Icon Group”=”Skype”
“Inno Setup: User”=”Demo99”
“Inno Setup: Language”=”en”
“DisplayName”=”Skype version 8.49”
“DisplayIcon”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\Skype.exe”
“UninstallString”=”\”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\unins000.exe\””
“QuietUninstallString”=”\”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\unins000.exe\” /SILENT”
“DisplayVersion”=”8.49”
“Publisher”=”Skype Technologies S.A.”
“URLInfoAbout”=”http://www.skype.com/”
“HelpLink”=”https://support.skype.com/”
“URLUpdateInfo”=”www.skype.com/download-skype/”
“NoModify”=dword:00000001
“NoRepair”=dword:00000001
“InstallDate”=”20190711”
“MajorVersion”=dword:00000008
“MinorVersion”=dword:00000031
“VersionMajor”=dword:00000008
“VersionMinor”=dword:00000031
“EstimatedSize”=dword:0003093b

 

Notes

Install Location (143 Files, 31 Folders, 221 MB)

C:\Program Files (x86)\Microsoft\Skype for Desktop


Skype uses asar compression 

C:\Program Files (x86)\Microsoft\Skype for Desktop\resources\app.asar


Disable Skype auto updates

 

tags: MrNetTek

Firefox – 68.0

email me

Description

Mozilla Firefox, or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, Mozilla Corporation. more…


Download

New Firefox is available here:

https://ftp.mozilla.org/pub/firefox/releases/68.0/win64/en-US/


Size

45.8 MB


Silent Install

setup.exe -ms


Silent Uninstall

“C:\Program Files\Mozilla Firefox\uninstall\helper.exe” /s


Registry

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla Firefox 68.0 (x64 en-US)]
“Comments”=”Mozilla Firefox 68.0 (x64 en-US)”
“DisplayIcon”=”C:\\Program Files\\Mozilla Firefox\\firefox.exe,0”
“DisplayName”=”Mozilla Firefox 68.0 (x64 en-US)”
“DisplayVersion”=”68.0”
“HelpLink”=”https://support.mozilla.org”
“InstallLocation”=”C:\\Program Files\\Mozilla Firefox”
“Publisher”=”Mozilla”
“UninstallString”=”\”C:\\Program Files\\Mozilla Firefox\\uninstall\\helper.exe\””
“URLUpdateInfo”=”https://www.mozilla.org/firefox/68.0/releasenotes”
“URLInfoAbout”=”https://www.mozilla.org”
“NoModify”=dword:00000001
“NoRepair”=dword:00000001
“EstimatedSize”=dword:0002d384

 


Notes

Version 68.0, first offered to Release channel users on July 9, 2019

Security vulnerabilities fixed in Firefox 68

What’s in the latest Firefox update? Mozilla pitches add-ons, new enterprise group policies

 

MSI Property Table

 

tags: MrNetTek

PowerShell – Download and Execute File

email me

Download a file from the web and launch it

$ProcName = "NoSleep.exe"
$WebFile = "https://eddiejackson.net/apps/$ProcName"

Clear-Host

(New-Object System.Net.WebClient).DownloadFile($WebFile,"$env:APPDATA\$ProcName")
Start-Process ("$env:APPDATA\$ProcName")


Notes

Google Link

Something pretty cool, you could use a Google Drive File ID in the script above, with some minor editing (the below ID works):

https://drive.google.com/uc?export=download&id=0B1ZMU4Jk29FPUUpta0drVW05WnM

GDrive Example

(New-Object System.Net.WebClient).DownloadFile("https://drive.google.com/uc?export=download&id=0B1ZMU4Jk29FPUUpta0drVW05WnM","$env:APPDATA\test.jpg")
Start-Process ("$env:APPDATA\test.jpg")

…running the above, will download and launch the test.jpg image. This means, you could store all your files on a Google Drive, and have users run a “lite” script, which would then download all the necessary resource files from your Google Drive. All permissions and access can be controlled from the Google Drive.

Single liner

powershell.exe -command PowerShell -ExecutionPolicy bypass -noprofile -windowstyle hidden -command (New-Object System.Net.WebClient).DownloadFile('https://eddiejackson.net/apps/NoSleep.exe',"$env:APPDATA\$ProcName");Start-Process ("$env:APPDATA\NoSleep.exe")


Get around the Google Drive Anti-Virus Message

clear-host

$FileName = 'foo.exe'
$FileID = "248ADma5BL7mHsLpsV3ciewy13rlCA8X_"

# set protocol to tls version 1.2
# "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12"

$FolderName = "C:\Download\"
if (Test-Path $FolderName) {

Write-Host "Folder Exists"
}
else
{

New-Item $FolderName -ItemType Directory

}

# Download the virus warning as temp.txt
Invoke-WebRequest -Uri "https://drive.google.com/uc?export=download&id=$FileID" -OutFile "C:\Download\temp.txt"

# Load temp.txt as string
$InputString = Get-Content C:\Download\temp.txt

# Return UUID from string
$match = Select-String "uuid=(.*)" -inputobject $InputString
$retMatch = $match.matches.groups[1].value
$Confirmation_UUID = $retMatch.Substring(0, $retMatch.IndexOf('"'))
$Confirmation_UUID

# Download the real file
Invoke-WebRequest -Uri "https://drive.google.com/uc?export=download&id=$FileID&confirm=t&$Confirmation_UUID" -OutFile "C:\Download\$FileName"

# Clear Session
$Confirmation_UUID = ""
$InputString = ""
$FileName  = ""
$FolderName = ""
$FileID = ""
Remove-Item "C:\Download\temp.txt"

Return all Methods from Net.WebClient

$objWWW = New-Object Net.WebClient
$objWWW | Get-Member

Alternative Download
wget “https://eddiejackson.net/apps/NoSleep.exe” -outfile “NoSleep.exe”

WebClient Class

tags: MrNetTek

PowerShell – Encoded Commands (Obfuscation)

email me

This is how you run encoded commands in PowerShell:

#PART1
$Command = "C:\PowerShell\foo_1.exe"
$Encoded = [convert]::ToBase64String([System.Text.encoding]::Unicode.GetBytes($Command))
Write-Host "Command: " $Command

#show encoded command
Write-Host "Encoded command: " $Encoded

#PART2
#run encoded command
cmd /c powershell.exe -encoded "$Encoded"


Output


Notes

Convert.ToBase64String Method

Also see Encoding & Decoding

 

tags: MrNetTek

SCCM – BitLocker Management

email me

Something exciting coming from Microsoft…

by Diliprad

On-premises BitLocker management using System Center Configuration Manager

For organizations currently using on-premises management, the best approach still remains getting your Windows devices to a co-managed state, to take advantage of cloud-based BitLocker management with Microsoft Intune. However to support scenarios where cloud is not an option, Microsoft is also introducing BitLocker management through Configuration Manager current branch.

Beginning in June 2019, Configuration Manager will release a product preview for BitLocker management capabilities, followed by general availability later in 2019. Similar to the Intune cloud-based approach, Configuration Manager will support BitLocker for Windows 10 Pro, Windows 10 Enterprise, and Windows 10 Education editions. It will also support Windows 7, Windows 8, and Windows 8.1 during their respective support lifecycles.

 

Configuration Manager (SCCM) will provide the following BitLocker management capabilities:


Provisioning

  • Our provisioning solution will ensure that BitLocker will be a seamless experience within the SCCM console while also retaining the breadth of MBAM.


Prepare Trusted Platform Module (TPM)

  • Admins can open the TPM management console for TPM versions 1.2 and 2.0. Additionally, SCCM will support TPM+PIN for log in. For those devices without a TPM, we also permit USBs to be used as authenticators on boot.


Setting BitLocker Configuration

  • All MBAM configuration specific values that you set will be available through the SCCM console, including: choose drive encryption and cipher strength, configure user exemption policy, fixed data drive encryption settings, and more.


Encryption

  • Encryption allows admins to determine the algorithms with which to encrypt the device, the disks that are targeted for encryption, and the baselines users must provide in order to gain access to the disks.


Policy enactment / remediation on device

  • Admins can force users to get compliant with new security policies before being able to access the device.


New user can set a pin / password on TPM & non-TPM devices

  • Admins can customize their organization’s security profile on a per device basis.


Auto unlock

  • Policies to specify whether to unlock only an OS drive, or all attached drives, when a user unlocks the OS drive.


Helpdesk portal with auditing

  • A helpdesk portal allows other personas in the organization outside of the SCCM admin to provide help with key recovery, including key rotation and other MBAM-related support cases that may arise.


Key rotation

  • Key rotation allows admins to use a single-use key for unlocking a BitLocker encrypted device. Once this key is used, a new key will be generated for the device and stored securely on-premises.


Compliance reporting

  • SCCM reporting will include all reports currently found on MBAM in the SCCM console. This includes key details like encryption status per volume, per device, the primary user of the device, compliance status, reasons for non-compliance, etc.

more…

 

tags: MrNetTek

Junos Pulse Secure – 9.0.3.1599

email me

Download

New Pulse Client is available here: https://www.pulsesecure.net/trynow/client-download  mirror


Size

19.6 MB


Silent Install

msiexec /i setup64.msi /qn

msiexec /i setup64.msi SHAREDINSTALL=1 SAVESETTINGS=1 /qn


Silent Uninstall

msiexec /x{89BF84A0-CADC-4C7F-8BF4-21F4A2733746} /qn

msiexec /x{89BF84A0-CADC-4C7F-8BF4-21F4A2733746} SAVESETTINGS=1 /qn

“C:\Program Files (x86)\Pulse Secure\Pulse\PulseUninstall.exe” /silent=1


Registry

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Pulse Secure 9.0]
“DisplayName”=”Pulse Secure 9.0”
“DisplayVersion”=”9.0.1599”
“Publisher”=”Pulse Secure, LLC”
“UninstallString”=”c:\\Program Files (x86)\\Pulse Secure\\Pulse\\PulseUninstall.exe”
“NoRepair”=dword:00000001
“NoModify”=dword:00000001
“DisplayIcon”=”c:\\Program Files (x86)\\Common Files\\Pulse Secure\\JamUI\\Pulse.exe”
“URLInfoAbout”=”http://www.pulsesecure.net/support”


MSI Property Table

There are two properties of relevance here: SHAREDINSTALL and SAVESETTINGS

SHAREDINSTALL = 1  allows multiple users; prevents disconnects

SAVESETTINGS = 1  saves Connections during uninstall

 


Notes

Release Notes

Pulse Secure Admin Guide

 

Settings Location (backup/restore Connections, if needed)

C:\ProgramData\Pulse Secure\ConnectionStore

 

Pulse Helper – must be started to see Connections in Pulse

“C:\Program Files (x86)\Pulse Secure\Pulse\PulseHelper.exe”

 

Other Pulse App GUIDs

{D9687A51-90CB-4691-A458-88517D35A51E}
{1B2D9376-AD97-480C-A3D6-5FBB822294C4}
{EF3E08E0-4B9B-47A4-A318-4C2C816C1C47}
{4320DFAD-6F8C-4FBA-AD0C-5344CD70C9E9}
{D5DE4E9C-D0E8-470B-8F5D-D4F8CA6DF85D}
{B0CFE1C6-6A54-4165-AFC7-62D9259D2EB5}
{BCA8F252-3DA1-4578-B5A0-FC75197FAF0B}
{E936D7F2-D9B3-494E-8433-67A2A496ACF0}
{35A74498-5DA0-4DBC-A91F-C89BEA8090AF}
{557686F0-9C00-456F-AED6-41ABF3DE1A0D}
{20ECE8AB-3378-4A41-83C8-5DA3037F6135}
{9F7F010D-3137-4496-970F-D77A61CE8E92}
{7A39E355-B3CA-4217-A508-05C2FCB7766B}
{6E31DBE8-6F48-4D22-AB10-EA76718532C4}
{7D2309C6-3F67-48B8-B524-522E2756795E}
{D6CAE4C8-27B8-4984-988E-B5A4868070CC}
{BAFD722A-4B9A-4152-B565-5BAFDA00A6BE}

 

tags: Pulse automation, Pulse scripting, MrNetTek

Windows – Pending Reboot Registry Keys

email me

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\UpdateExeVolatile

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations2

HKEY_LOCAL_MACHINE\SYSTEM\CurrentSet001\Control\Session Manager\

HKEY_LOCAL_MACHINE\SYSTEM\CurrentSet002\Control\Session Manager\

HKEY_LOCAL_MACHINE\SYSTEM\CurrentSet003\Control\Session Manager\

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Services\Pending\

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired\Mandatory

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\PostRebootReporting

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce\DVDRebootSignal

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootInProgress

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ServerManager\CurrentRebootAttempts

 

tags: MrNetTek

C# – Knapsack Problem

email me

The knapsack problem or rucksack problem is a problem in combinatorial optimization: Given a set of items, each with a weight and a value, determine the number of each item to include in a collection so that the total weight is less than or equal to a given limit and the total value is as large as possible.

Here is the problem solved in C# – tested in Visual Studio 2017.

int[] Weights = set of weights
int[] Values = set of Values
int limit = limit using Values

using System;

class Optimization
{

// returns max of two integers
static int Max(int num1, int num2)
{
return (num1 > num2) ? num1 : num2;
}

// returns max values in knapsack
static int Knapsack(int W, int[] weight, int[] value, int n)
{
int i, w;
int[,] TotalValue = new int[n + 1, W + 1];

// bottom up approach
for (i = 0; i <= n; i++)
{
for (w = 0; w <= W; w++)
{
if (i == 0 || w == 0)
TotalValue[i, w] = 0;
else if (weight[i - 1] <= w)
TotalValue[i, w] = Math.Max(value[i - 1]
+ TotalValue[i - 1, w - weight[i - 1]], TotalValue[i - 1, w]);
else
TotalValue[i, w] = TotalValue[i - 1, w];
}
}

return TotalValue[n, W];
}

// entry point
static void Main()
{
int[] Values = new int[] { 50, 80, 110, 230 };
int[] Weights = new int[] { 10, 20, 30, 40 };
int limit = 60;
int n = Weights.Length;

Console.WriteLine("Total value: {0}", Knapsack(limit, Weights, Values, n));
Console.ReadKey();
}
}


Output

The mathematics behind the problem


more about it: PDF

tags: MrNetTek

Skype for Desktop – 8.48.0.51

email me

New Skype for Desktop (Windows) is available here:

https://go.skype.com/windows.desktop.download  mirror

 

Size

60.5 MB


Silent Install

setup.exe /VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH -ms


Silent Uninstall

“C:\Program Files (x86)\Microsoft\Skype for Desktop\unins000.exe” /SILENT


Registry

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Skype_is1]
“Inno Setup: Setup Version”=”5.6.1 (u)”
“Inno Setup: App Path”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop”
“InstallLocation”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\”
“Inno Setup: Icon Group”=”Skype”
“Inno Setup: User”=”Administrator”
“Inno Setup: Language”=”en”
“DisplayName”=”Skype version 8.48”
“DisplayIcon”=”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\Skype.exe”
“UninstallString”=”\”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\unins000.exe\””
“QuietUninstallString”=”\”C:\\Program Files (x86)\\Microsoft\\Skype for Desktop\\unins000.exe\” /SILENT”
“DisplayVersion”=”8.48”
“Publisher”=”Skype Technologies S.A.”
“URLInfoAbout”=”http://www.skype.com/”
“HelpLink”=”https://support.skype.com/”
“URLUpdateInfo”=”www.skype.com/download-skype/”
“NoModify”=dword:00000001
“NoRepair”=dword:00000001
“InstallDate”=”20190701”
“MajorVersion”=dword:00000008
“MinorVersion”=dword:00000030
“VersionMajor”=dword:00000008
“VersionMinor”=dword:00000030
“EstimatedSize”=dword:00030c7a

 

Notes

Uses asar compression: C:\Program Files (x86)\Microsoft\Skype for Desktop\resources

Disable Skype auto updates

 

tags: MrNetTek

Python – Prevent Screen Sleep and Screensaver

email me

Modifying the SetThreadExecutionState will allow you to control whether or not the computer will idle—no idle, no monitor sleep or screensaver.

import ctypes
ctypes.windll.kernel32.SetThreadExecutionState(0x80000002)
input('{Press enter to exit}')
ctypes.windll.kernel32.SetThreadExecutionState(0x80000000)


Python Terminal

 

Notes

SetThreadExecutionState function

 

tags: MrNetTek

Batch – Windows – Setting Screen Brightness

email me

This demonstrates how to control display brightness using simple batch scripting and the powercfg.exe command.

@echo off

set /P brightness=Enter brightness level (1-100):% brightness:  %=%

:: Set Brightness Level
POWERCFG /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 aded5e82-b909-4619-9949-f5d71dac0bcb %brightness%
POWERCFG /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 aded5e82-b909-4619-9949-f5d71dac0bcb %brightness%

:: Set Active
POWERCFG /S 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

timeout /t 20

:: Restore Brightness Level
POWERCFG /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 aded5e82-b909-4619-9949-f5d71dac0bcb 100
POWERCFG /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 aded5e82-b909-4619-9949-f5d71dac0bcb 100

:: Set Active
POWERCFG /S 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

pause

 

 

Notes

Extrapolate Power Scheme Data

for /f “tokens=*” %%i in (‘powercfg -q ^| find “Power Scheme GUID”‘) do set pwrSchm=%%i
set pwrSchm=%pwrSchm:~19,36%

for /f “tokens=*” %%i in (‘powercfg -q ^| find “(Display)”‘) do set dsply=%%i
set dsply=%dsply:~15,36%

for /f “tokens=*” %%i in (‘powercfg -q ^| find “(Display brightness)”‘) do set brtnss=%%i
set brtnss=%brtnss:~20,36%


Power Scheme Details

Power Scheme GUID: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c (High performance)
GUID Alias: SCHEME_MIN
Subgroup GUID: 0012ee47-9041-4b5d-9b77-535fba8b1442 (Hard disk)
GUID Alias: SUB_DISK
Power Setting GUID: 6738e2c4-e8a5-4a42-b16a-e040e769756e (Turn off hard disk after)
GUID Alias: DISKIDLE
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x000004b0

Subgroup GUID: 02f815b5-a5cf-4c84-bf20-649d1f75d3d8 (Internet Explorer)
Power Setting GUID: 4c793e7d-a264-42e1-87d3-7a0d2f523ccd (JavaScript Timer Frequency)
Possible Setting Index: 000
Possible Setting Friendly Name: Maximum Power Savings
Possible Setting Index: 001
Possible Setting Friendly Name: Maximum Performance
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Subgroup GUID: 0d7dbae2-4294-402a-ba8e-26777e8488cd (Desktop background settings)
Power Setting GUID: 309dce9b-bef4-4119-9921-a851fb12f0f4 (Slide show)
Possible Setting Index: 000
Possible Setting Friendly Name: Available
Possible Setting Index: 001
Possible Setting Friendly Name: Paused
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Subgroup GUID: 19cbb8fa-5279-450e-9fac-8a3d5fedd0c1 (Wireless Adapter Settings)
Power Setting GUID: 12bbebe6-58d6-4636-95bb-3217ef867c1a (Power Saving Mode)
Possible Setting Index: 000
Possible Setting Friendly Name: Maximum Performance
Possible Setting Index: 001
Possible Setting Friendly Name: Low Power Saving
Possible Setting Index: 002
Possible Setting Friendly Name: Medium Power Saving
Possible Setting Index: 003
Possible Setting Friendly Name: Maximum Power Saving
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Subgroup GUID: 238c9fa8-0aad-41ed-83f4-97be242c8f20 (Sleep)
GUID Alias: SUB_SLEEP
Power Setting GUID: 29f6c1db-86da-48c5-9fdb-f2b67b1f44da (Sleep after)
GUID Alias: STANDBYIDLE
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Power Setting GUID: 94ac6d29-73ce-41a6-809f-6363ba21b47e (Allow hybrid sleep)
GUID Alias: HYBRIDSLEEP
Possible Setting Index: 000
Possible Setting Friendly Name: Off
Possible Setting Index: 001
Possible Setting Friendly Name: On
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: 9d7815a6-7ee4-497e-8888-515a05f02364 (Hibernate after)
GUID Alias: HIBERNATEIDLE
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Power Setting GUID: bd3b718a-0680-4d9d-8ab2-e1d2b4ac806d (Allow wake timers)
GUID Alias: RTCWAKE
Possible Setting Index: 000
Possible Setting Friendly Name: Disable
Possible Setting Index: 001
Possible Setting Friendly Name: Enable
Possible Setting Index: 002
Possible Setting Friendly Name: Important Wake Timers Only
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Subgroup GUID: 2a737441-1930-4402-8d77-b2bebba308a3 (USB settings)
Power Setting GUID: 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 (USB selective suspend setting)
Possible Setting Index: 000
Possible Setting Friendly Name: Disabled
Possible Setting Index: 001
Possible Setting Friendly Name: Enabled
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Subgroup GUID: 4f971e89-eebd-4455-a8de-9e59040e7347 (Power buttons and lid)
GUID Alias: SUB_BUTTONS
Power Setting GUID: 5ca83367-6e45-459f-a27b-476b1d01c936 (Lid close action)
GUID Alias: LIDACTION
Possible Setting Index: 000
Possible Setting Friendly Name: Do nothing
Possible Setting Index: 001
Possible Setting Friendly Name: Sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 003
Possible Setting Friendly Name: Shut down
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: 7648efa3-dd9c-4e3e-b566-50f929386280 (Power button action)
GUID Alias: PBUTTONACTION
Possible Setting Index: 000
Possible Setting Friendly Name: Do nothing
Possible Setting Index: 001
Possible Setting Friendly Name: Sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 003
Possible Setting Friendly Name: Shut down
Possible Setting Index: 004
Possible Setting Friendly Name: Turn off the display
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000003

Power Setting GUID: 96996bc0-ad50-47ec-923b-6f41874dd9eb (Sleep button action)
GUID Alias: SBUTTONACTION
Possible Setting Index: 000
Possible Setting Friendly Name: Do nothing
Possible Setting Index: 001
Possible Setting Friendly Name: Sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 003
Possible Setting Friendly Name: Shut down
Possible Setting Index: 004
Possible Setting Friendly Name: Turn off the display
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000001

Power Setting GUID: a7066653-8d6c-40a8-910e-a1f54b84c7e5 (Start menu power button)
GUID Alias: UIBUTTON_ACTION
Possible Setting Index: 000
Possible Setting Friendly Name: Sleep
Possible Setting Index: 001
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 002
Possible Setting Friendly Name: Shut down
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Subgroup GUID: 501a4d13-42af-4429-9fd1-a8218c268e20 (PCI Express)
GUID Alias: SUB_PCIEXPRESS
Power Setting GUID: ee12f906-d277-404b-b6da-e5fa1a576df5 (Link State Power Management)
GUID Alias: ASPM
Possible Setting Index: 000
Possible Setting Friendly Name: Off
Possible Setting Index: 001
Possible Setting Friendly Name: Moderate power savings
Possible Setting Index: 002
Possible Setting Friendly Name: Maximum power savings
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Subgroup GUID: 54533251-82be-4824-96c1-47b60b740d00 (Processor power management)
GUID Alias: SUB_PROCESSOR
Power Setting GUID: 893dee8e-2bef-41e0-89c6-b55d0929964c (Minimum processor state)
GUID Alias: PROCTHROTTLEMIN
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000064
Current DC Power Setting Index: 0x00000005

Power Setting GUID: 94d3a615-a899-4ac5-ae2b-e4d8f634367f (System cooling policy)
GUID Alias: SYSCOOLPOL
Possible Setting Index: 000
Possible Setting Friendly Name: Passive
Possible Setting Index: 001
Possible Setting Friendly Name: Active
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: bc5038f7-23e0-4960-96da-33abaf5935ec (Maximum processor state)
GUID Alias: PROCTHROTTLEMAX
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000064
Current DC Power Setting Index: 0x00000064

Subgroup GUID: 7516b95f-f776-4464-8c53-06167f40cc99 (Display)
GUID Alias: SUB_VIDEO
Power Setting GUID: 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e (Turn off display after)
GUID Alias: VIDEOIDLE
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000708
Current DC Power Setting Index: 0x00000258

Power Setting GUID: aded5e82-b909-4619-9949-f5d71dac0bcb (Display brightness)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000061
Current DC Power Setting Index: 0x00000014

Power Setting GUID: f1fbfde2-a960-4165-9f88-50667911ce96 (Dimmed display brightness)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000064
Current DC Power Setting Index: 0x00000032

Power Setting GUID: fbd9aa66-9553-4097-ba44-ed6e9d65eab8 (Enable adaptive brightness)
GUID Alias: ADAPTBRIGHT
Possible Setting Index: 000
Possible Setting Friendly Name: Off
Possible Setting Index: 001
Possible Setting Friendly Name: On
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000001

Subgroup GUID: 9596fb26-9850-41fd-ac3e-f7c3c00afd4b (Multimedia settings)
Power Setting GUID: 03680956-93bc-4294-bba6-4e0f09bb717f (When sharing media)
Possible Setting Index: 000
Possible Setting Friendly Name: Allow the computer to sleep
Possible Setting Index: 001
Possible Setting Friendly Name: Prevent idling to sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Allow the computer to enter Away Mode
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: 10778347-1370-4ee0-8bbd-33bdacaade49 (Video playback quality bias.)
Possible Setting Index: 000
Possible Setting Friendly Name: Video playback power-saving bias.
Possible Setting Index: 001
Possible Setting Friendly Name: Video playback performance bias.
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000000

Power Setting GUID: 34c7b99f-9a6d-4b3c-8dc7-b6693b78cef4 (When playing video)
Possible Setting Index: 000
Possible Setting Friendly Name: Optimize video quality
Possible Setting Index: 001
Possible Setting Friendly Name: Balanced
Possible Setting Index: 002
Possible Setting Friendly Name: Optimize power savings
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Subgroup GUID: e73a048d-bf27-4f12-9731-8b2076e8891f (Battery)
GUID Alias: SUB_BATTERY
Power Setting GUID: 5dbb7c9f-38e9-40d2-9749-4f8a0e9f640f (Critical battery notification)
GUID Alias: BATFLAGSCRIT
Possible Setting Index: 000
Possible Setting Friendly Name: Off
Possible Setting Index: 001
Possible Setting Friendly Name: On
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: 637ea02f-bbcb-4015-8e2c-a1c7b9c0b546 (Critical battery action)
GUID Alias: BATACTIONCRIT
Possible Setting Index: 000
Possible Setting Friendly Name: Do nothing
Possible Setting Index: 001
Possible Setting Friendly Name: Sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 003
Possible Setting Friendly Name: Shut down
Current AC Power Setting Index: 0x00000002
Current DC Power Setting Index: 0x00000002

Power Setting GUID: 8183ba9a-e910-48da-8769-14ae6dc1170a (Low battery level)
GUID Alias: BATLEVELLOW
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x0000000a
Current DC Power Setting Index: 0x0000000a

Power Setting GUID: 9a66d8d7-4ff7-4ef9-b5a2-5a326ca2a469 (Critical battery level)
GUID Alias: BATLEVELCRIT
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000005
Current DC Power Setting Index: 0x00000005

Power Setting GUID: bcded951-187b-4d05-bccc-f7e51960c258 (Low battery notification)
GUID Alias: BATFLAGSLOW
Possible Setting Index: 000
Possible Setting Friendly Name: Off
Possible Setting Index: 001
Possible Setting Friendly Name: On
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001

Power Setting GUID: d8742dcb-3e6a-4b3c-b3fe-374623cdcf06 (Low battery action)
GUID Alias: BATACTIONLOW
Possible Setting Index: 000
Possible Setting Friendly Name: Do nothing
Possible Setting Index: 001
Possible Setting Friendly Name: Sleep
Possible Setting Index: 002
Possible Setting Friendly Name: Hibernate
Possible Setting Index: 003
Possible Setting Friendly Name: Shut down
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000

Power Setting GUID: f3c5027d-cd16-4930-aa6b-90db844a8f00 (Reserve battery level)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000007
Current DC Power Setting Index: 0x00000007

 

tags: MrNetTek