$cert = Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert
Set-AuthenticodeSignature -FilePath $PROFILE -Certificate $cert
Push-Location C:\NotBackedUp\GitHub
cmd /c mklink /J jeremy-jameson "C:\BackedUp\GitHub\jeremy-jameson"
cmd /c mklink /J technology-toolbox "C:\BackedUp\GitHub\technology-toolbox"
This file contains 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
Name | StartupOrder | |
---|---|---|
CIPHER01 | 4 | |
CON-ADFS01 | 302 | |
CON-DC05 | 300 | |
CON-DC06 | 301 | |
CON-W10-TEST-03 | 303 | |
CRYPTID | 0 | |
EXT-ADFS01A | 0 | |
EXT-ADFS03A | 108 | |
EXT-ADFS03B | 109 |
This file contains 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
USE [MDW] | |
GO | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
ALTER PROCEDURE [snapshots].[rpt_query_stats] |
This file contains 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
IF OBJECT_ID('tempdb.dbo.#CommandQueue', 'U') IS NOT NULL | |
BEGIN | |
DROP TABLE #CommandQueue | |
END | |
CREATE TABLE #CommandQueue | |
( | |
ID INT IDENTITY (1, 1) | |
, SqlStatement VARCHAR(1000) | |
) |
$uri = "https://mail-test.technologytoolbox.com/admin/api/v1/boxes"
$userPassword = "{specify test mail password here}"
$adminUsername = "[email protected]"
$adminPassword = "{specify Poste.io admin password here}"
$credentials = "${adminUsername}:${adminPassword}"