This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
********************************************************************************************************* | |
* Created by Ioan Popovici, 2015-08-18 | Requirements: CM_Tools Database * | |
* ======================================================================================================* | |
* Modified by | Date | Revision | Comments * | |
*_______________________________________________________________________________________________________* | |
* Ioan Popovici | 2015-08-18 | v1.0 | First version * | |
*-------------------------------------------------------------------------------------------------------* | |
* Credit to: Michelle Ufford http://sqlfool.com. * | |
********************************************************************************************************* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Injects packages into a WIM. | |
.DESCRIPTION | |
Injects packages into a Windows Image image using PowerShell DISM CommandLets. | |
.EXAMPLE | |
Update-OfflineWindowsImage.ps1 | |
.NOTES | |
Created by Ioan Popovici | |
Requirements |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Repairs error 0x800f082f~ encountered during offline servicing. | |
.DESCRIPTION | |
Repairs error 0x800f082f~ encountered during offline servicing by setting the | |
HKLM:\Microsoft\Windows\CurrentVersion\Component Based Servicing\SessionsPending\Exclusive value to 0. | |
.INPUTS | |
None. | |
.OUTPUTS | |
None. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Tests network conectivity on TCP ports. | |
.DESCRIPTION | |
Tests network conectivity on TCP ports on specific domains. | |
.EXAMPLE | |
Test-TCPPorts.ps1 | |
.INPUTS | |
System.String. | |
.OUTPUTS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Gets the BitLocker protection status. | |
.DESCRIPTION | |
Gets the BitLocker protection status for a specific drive, or all drives. | |
.PARAMETER DriveType | |
Specifies the drive type(s) for which to get the bitlocker status. Default is: '3'. | |
Available values | |
0 DRIVE_UNKNOWN | |
1 DRIVE_NO_ROOT_DIR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Selects a certificate in the certificate store. | |
.DESCRIPTION | |
Selects a certificate in a specified certificate store using the certificate Serial Number. | |
.EXAMPLE | |
Select-Certificate.ps1 | |
.NOTES | |
Created by Ioan Popovici | |
.LINK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Adds a certificate to the certificate store. | |
.DESCRIPTION | |
Adds a certificate to the certificate store using the certificate key in base64 format. | |
.EXAMPLE | |
Add-Certificate.ps1 | |
.INPUTS | |
None. | |
.OUTPUTS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================== | |
//---------------| SQL definition start |--------------- | |
//====================================================== | |
/* | |
.SYNOPSIS | |
Extends Configuration Manager HWI for SQL Products. | |
.DESCRIPTION | |
Extends Configuration Manager HWI for SQL Products, by adding already created classes to Hardware Inventory. | |
.NOTES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
.SYNOPSIS | |
Gets SQL product info. | |
.DESCRIPTION | |
Gets SQL product info, id and product key. | |
.NOTES | |
Created by Ioan Popovici. | |
Requires the usp_PivotWithDynamicColumns stored procedure (SQL Support Functions). | |
Requires SQL Property and ProductID HWI extensions. | |
Part of a report should not be run separately. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
********************************************************************************************************* | |
* Requires | SQL, company AD attribute, Wi32_Computer_System_Product WMI class gathering * | |
* ===================================================================================================== * | |
* Modified by | Date | Revision | Comments * | |
* _____________________________________________________________________________________________________ * | |
* Octavian Cordos | 2018-01-18 | v1.0 | First version * | |
* Ioan Popovici | 2018-08-08 | v1.1 | Added localizations, sorting, template, element naming * | |
* Ioan Popovici | 2018-08-21 | v1.2 | Fixed duplicates minor formating fixes * | |
* Ioan Popovici | 2018-08-23 | v1.3 | Removed company query * |