Raspberry pi cleanup script
Create with the following command in your raspberry pi the script. sudo nano cleanup.sh Paste below the text and with CTRL + X close nano #!/bin/bash OLDCONF=$(dpkg -l|grep "^rc"|awk '{print…
Create with the following command in your raspberry pi the script. sudo nano cleanup.sh Paste below the text and with CTRL + X close nano #!/bin/bash OLDCONF=$(dpkg -l|grep "^rc"|awk '{print…
Uitgaande van een standaard installatie van het VPN Server package: Navigeer naar Code: /usr/syno/etc/packages/VPNCenter/Maak daarin een map aan met de naam Code: ccdRechten ccd: 0755 Maak in die map een…
Exchange 2007 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin; Exchange 2010 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010; Exchange 2013 & 2016 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn;
With a single command you can retrieve WWN’s on Windows Server 2012 R2 using PowerShell. Open the PowerShell command and type: Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace “root\WMI” | ForEach-Object {(($_.NodeWWN) |…
https://erwinvanlonden.net/
I had issue connecting to a broccade switch. I got a message that I need to install Java. But Java latest version is already installed on my system. I tried…
For Windows 10 Professional it is not possible to do this with GPO. So add in the GPO this to the register. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager SilentInstalledAppsEnabled DWORD 0 = Disable 1 =…
I Use this script in MDT to remove all Windows 10 Apps. Add more in $Appslist if you need to remove more. $AppsList = "Microsoft.3DBuilder","Microsoft.Microsoft3DViewer","Microsoft.BingWeather","Microsoft.Getstarted","Microsoft.Messaging","Microsoft.MicrosoftOfficeHub","Microsoft.MicrosoftSolitaireCollection","Microsoft.OneConnect","Microsoft.People","Microsoft.SkypeApp","microsoft.windowscommunicationsapps","Microsoft.FeedbackHub","Microsoft.WindowsMaps","Microsoft.XboxApp","Microsoft.XboxIdendityProvider","Microsoft.ZuneMusic","Microsoft.ZuneVideo","AdobeSystemsIncorporated.AdobePhotoshopExpress","Microsoft.Advertising.Xaml","Microsoft.Office.OneNote","Microsoft.WindowsFeedbackHub","Microsoft.XboxGameOverlay","Microsoft.XboxIdentityProvider","Microsoft.XboxSpeechToTextOverlay","Microsoft.Office.Sway","Microsoft.BingNews","D5EA27B7.Duolingo-LearnLanguagesforFree","46928bounde.EclipseManager" ForEach ($App in $AppsList) {…
For a different company I needed to install Notepad++ on some systems. Created AD group. Created a Share. Give rights to the AD group. In the ad Group place the…
Create powershell script $RegPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" Set-ItemProperty $RegPath "AutoAdminLogon" -Value "1" -type String Set-ItemProperty $RegPath "DefaultPassword" -Value "Password" -type String Place it high in the State Restore.