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
| ::********************************************************************************* | |
| :: | |
| :: Title: RunAs Smartcard User Script | |
| :: | |
| :: Purpose: This script runs a selected program as a Smartcard User | |
| :: | |
| :: Note: The Windows service "Secondary Logon" needs to running for script to work. | |
| :: | |
| :: To run service: | |
| :: |
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
| ################################################################################## | |
| # | |
| # Purpose: To registry proxy SSL certificate with Fortify Java. | |
| # OS: Windows | |
| # Terminal: PowerShell | |
| # | |
| # James Perrin, @jamesperrin | https://github.com/jamesperrin | |
| # Licensed under CC0-1.0 (https://creativecommons.org/publicdomain/zero/1.0/) | |
| ################################################################################## |
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
| /** | |
| * @file uuidv4.js | |
| * @description | |
| * Generates an RFC 4122 version 4 UUID using cryptographically secure random numbers. | |
| * Works in modern browsers and Node.js environments that support the global `crypto` object. | |
| * | |
| * @example | |
| * import { uuidv4 } from './uuidv4.js'; | |
| * console.log(uuidv4()); // "e7b4a2c1-4f6e-4cbb-8a14-9e7bcd84f96b" | |
| */ |
OlderNewer