View GetCurrentPatchlevel.ps1
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
param( | |
[string]$BuildVersion = "" | |
) | |
#Patch-Level der SharePoint Farm prüfen | |
$apiUrl = "https://sharepointupdates.com/api/articles/" | |
if ($BuildVersion -eq "") { | |
write-host "Lese Farm-Info..." -f Gray | |
asnp *share* | |
$BuildVersion = (Get-SPFarm).BuildVersion.ToString() |
View BackupAllSites.ps1
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
param( | |
[Parameter(Mandatory=$true)][string]$BackupPath, | |
[bool]$DateTimePrefix = $true, | |
[bool]$OverwriteExistingBackups = $false | |
) | |
if ($DateTimePrefix) { | |
$date_time_prefix = Get-Date -Format "yyMMdd_HHmmss_" | |
} else { | |
$date_time_prefix = ""; |
View RunAllHealthAnalyzerTimerJobs.ps1
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
asnp *share* | |
write-host "Getting timerjob definitions..." | |
$jobs = Get-SPTimerJob | ? {$_.Title -like "Health Analysis Job*"} | |
if (!$jobs -or $jobs.Count -eq 0) { | |
# Maybe in German? :) | |
$jobs = Get-SPTimerJob | ? {$_.Title -like "Integritätsanalyseauftrag*"} | |
} |
View StartStopDevVMs.ps1
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
# Change VM names to your own names | |
$baseVMs = @("ROUTER","AD") | |
$sqlVMs = @("SPSQL2016") | |
$sharepointVMs = @("SP2016-1","SP2016-2") | |
# ------------------------------------------------------------------------------------------------- | |
function Start-VMSet($vmSet){ |
View MoveSearchComponents_Traditional2Streamlined.ps1
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
asnp *share* | |
$wfeServerName = "SP2016-1" | |
$appServerName = "SP2016-2" | |
$ssa = Get-SPEnterpriseSearchServiceApplication | |
$active = Get-SPEnterpriseSearchTopology -SearchApplication $ssa -Active | |
$clone = New-SPEnterpriseSearchTopology -SearchApplication $ssa -Clone –SearchTopology $active |
View DCGracefulShutdown.ps1
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
# Source: https://technet.microsoft.com/en-us/library/jj219613.aspx?f=255&MSPPError=-2147217396#graceful | |
# changed it to dynamic hostname | |
# Run this on the Cache Host that should be stopped | |
$hostName = [System.Net.Dns]::GetHostByName(($env:COMPUTERNAME)).HostName | |
$startTime = Get-Date | |
$currentTime = $startTime | |
$elapsedTime = $currentTime - $startTime |
View GetWebSizes.ps1
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
function GetWebSizes ($StartWeb) | |
{ | |
$web = Get-SPWeb $StartWeb | |
[long]$total = 0 | |
$total += GetWebSize -Web $web | |
$total += GetSubWebSizes -Web $web | |
$totalInMb = ($total/1024)/1024 | |
$totalInMb = "{0:N2}" -f $totalInMb | |
$totalInGb = (($total/1024)/1024)/1024 | |
$totalInGb = "{0:N2}" -f $totalInGb |
View Update-AzModules.ps1
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
# Source: https://robertsmit.wordpress.com/2020/05/27/update-all-az-azure-powershell-modules-powershell-azure-script-modules/ | |
# Author: Robert Smit | |
Get-Module -Name az.* -ListAvailable | | |
Where-Object -Property Name -ne 'Az.' | | |
ForEach-Object { | |
$currentVersion = [Version] $_.Version | |
$newVersion = [Version] (Find-Module -Name $_.Name).Version | |
if ($newVersion -gt $currentVersion) { | |
Write-Host -Object "Updating $_ Module from $currentVersion to $newVersion" | |
Update-Module -Name $_.Name -RequiredVersion $newVersion -Force |
View mytemplate.bicep
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
param location string = resourceGroup().location | |
param environment string = 'dev' | |
param appName string = 'myapp' | |
var storageAccountName = 'st${appName}${environment}' | |
resource MyStorageAccount 'Microsoft.Storage/storageAccounts@2019-06-01' = { | |
name: storageAccountName | |
location: location | |
kind: 'Storage' | |
sku: { |
OlderNewer