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
-- Generate 4M rows using Ben-Gan style with 8-row seed | |
WITH E1(N) AS ( | |
SELECT 1 UNION ALL SELECT 1 UNION ALL SELECT 1 UNION ALL SELECT 1 | |
UNION ALL SELECT 1 UNION ALL SELECT 1 UNION ALL SELECT 1 UNION ALL SELECT 1 -- 8-row seed | |
), | |
E2(N) AS (SELECT 1 FROM E1 AS a CROSS JOIN E1 AS b), -- 64 rows (8 × 8) | |
E4(N) AS (SELECT 1 FROM E2 AS a CROSS JOIN E2 AS b), -- 4k rows (64 × 64) | |
E8(N) AS (SELECT 1 FROM E4 AS a CROSS JOIN E4 AS b), -- 16M rows (4k x 4k) | |
Numbers AS (SELECT TOP (4000000) ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS n FROM E8) |
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
### Configure Windows security policies to hide the last signed-in username, conceal user information on the lock screen, and require manual username entry at logon. | |
# logon: Don't display last signed-in Username | |
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DontDisplayLastUserName" -Value 1 | |
# Do not display user information when the session is locked | |
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DontDisplayLockedUserID" -Value 3 | |
# Force Manual Username Entry (required to press CTRL+ALT+DEL before logging on to Windows) | |
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableCAD" -Value 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
PATCH /subscriptions/_subscriptionId_/resourceGroups/_rg_/providers/Microsoft.Web/sites/_function_name_?api-version=2022-03-01 | |
{ | |
"properties": { | |
"enabled": true, | |
"adminEnabled": true | |
} | |
} | |
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 -Version 3.0 | |
#The script requires the following permissions: | |
# Application.Read.All (required) | |
# AuditLog.Read.All (optional, needed to retrieve Sign-in stats) | |
#For details on what the script does and how to run it, check: https://www.michev.info/blog/post/5940/reporting-on-entra-id-application-registrations | |
[CmdletBinding(SupportsShouldProcess)] #Make sure we can use -Verbose | |
Param( | |
[switch]$SkipExcelOutput=$false, |
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
$puId = "40" | |
$url = "https://d365opsasteuiwypep2gu3b.blob.core.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47-e54b86e7/njj7L1Up2RUdqSA1tKG4Tw?skoid=9ef30196-cd78-4a47-955e-89a3947f0a23&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2024-06-21T06%3A17%3A36Z&ske=2024-06-24T07%3A17%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-06-21T06%3A17%3A36Z&se=2024-06-24T07%3A17%3A36Z&sr=b&sp=r&sig=hSWXJzM9VGPDHWOMBtQTqNoFgg7CQbeZeWJP%2FX0kJMw%3D" | |
$file = "d:\$puId.zip" | |
C:\DynamicsTools\azcopy.exe cp "$url" $file | |
mkdir d:\pu | |
C:\DynamicsTools\7za.exe x $file -od:\pu\ | |
pushd d:\pu | |
C:\DynamicsTools\UpdateDevBox.ps1 $puId |
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
<fragment> | |
<choose> | |
<when condition="@(null != context.Variables.GetValueOrDefault<string>("LaWfName", null))"> | |
<cache-lookup-value key="@(context.Variables.GetValueOrDefault<string>("LaWfName", null))" variable-name="LAWfTriggerUri" caching-type="internal" /> | |
<choose> | |
<when condition="@(string.IsNullOrEmpty(context.Variables.GetValueOrDefault<string>("LAWfTriggerUri", null)))"> | |
<send-request mode="new" timeout="20" ignore-error="false" response-variable-name="LAWfTriggerResponse"> | |
<set-url>@{ | |
var laName = context.Variables.GetValueOrDefault<string>("LaName", null); | |
var laWfName = context.Variables.GetValueOrDefault<string>("LaWfName", null); |
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
# Export to .env file - Does not work with Windows Poershell 5.1 | |
$tmpFile = [System.IO.Path]::GetTempFileName() | |
Write-Verbose -Verbose "Using $tmpFile" | |
gh variable list --json name,value --template "{{range .}}{{.name}}={{.value}}`n{{end}}" | Out-File -FilePath $tmpFile -Encoding utf8NoBOM | |
# cd to new repo or update Owner/Repo | |
gh variable set --env-file $tmpFile --repo Owner/Repo | |
Remove-Item $tmpFile |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<staticContent> | |
<mimeMap fileExtension="." mimeType="text/plain" /> | |
</staticContent> | |
</system.webServer> | |
</configuration> |
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
CREATE USER [name@domain.com] FROM EXTERNAL PROVIDER | |
sp_addrolemember @rolename = 'db_datawriter', @membername = '[email protected]' | |
sp_addrolemember @rolename = 'db_datareader', @membername = '[email protected]' |
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
CREATE CREDENTIAL [https://_name_.blob.core.windows.net/backup] WITH IDENTITY='Shared Access Signature', SECRET='sp=racwdl&st=2023-06-01T12:17:10Z&se=2024-01-01T21:17:10Z&spr=https&sv=2022-11-02&sr=c&sig=doW...3D' | |
DECLARE @dbToBackup as sysname = 'DB' | |
DECLARE @folder as nvarchar(50) = 'shrinked' | |
DECLARE @file as nvarchar(100) = @dbToBackup + N'_' + FORMAT(GETDATE(), N'yyyy-MM-dd_hhmmss') + N'.bak' | |
DECLARE @destUrl as nvarchar(500) = N'https://_name_.blob.core.windows.net/backup/' + @folder + N'/' + @file | |
PRINT @destUrl | |
BACKUP DATABASE @dbToBackup TO | |
URL = @destUrl | |
WITH NOFORMAT, NOINIT, NAME = N'Full Database Backup', NOSKIP, NOREWIND, NOUNLOAD, COMPRESSION, STATS = 5 |
NewerOlder