SBS – Repair SUSDB

sqlcmd -S \\.\pipe\MSSQL$Microsoft##SSEE\sql\query ALTER DATABASE SUSDB SET SINGLE_USER WITH ROLLBACK IMMEDIATE DBCC checkdb (‚SUSDB‘, repair_allow_data_loss) go ALTER DATABASE SUSDB SET MULTI_USER go

mehr lesen…

Office 365 – Postfachfreigabe – SendAs

$cred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic -AllowRedirection import-PSSession $Session Add-MailboxPermission -identity…

mehr lesen…

LogOn Skript

@ECHO OFF REM Standardlaufwerke mappen net use * /d /y net use H: \\SERVER\UserShares\%username% /PERSISTENT:NO net use U: \\SERVER\UserShares /PERSISTENT:NO

mehr lesen…