Kategorien
Kategorien
Archiv des Autors: root
Ubuntu 16.04 Postinstall
Enable root: [bash] sudo su sudo passwd root su -l [/bash] disable IPv6: [bash] vi /etc/sysctl.d/01-disable-ipv6.conf [/bash] [bash] net.ipv6.conf.all.disable_ipv6 = 1 [/bash] remove Shopping lense: [bash] apt-get remove unity-lens-shopping gsettings set com.canonical.Unity.Lenses disabled-scopes "[‚more_suggestions-amazon.scope‘, ‚more_suggestions-u1ms.scope‘, ‚more_suggestions-populartracks.scope‘, ‚music-musicstore.scope‘, ‚more_suggestions-ebay.scope‘, ‚more_suggestions-ubuntushop.scope‘, ‚more_suggestions-skimlinks.scope‘]" … Weiterlesen
Veröffentlicht unter bash, Linux
Schreib einen Kommentar
Windows Tweaks
MPEnablePlus http://ulrichhanke.de/MicrosoftTipps/Win10Adware-Killer.html http://ulrichhanke.de
Veröffentlicht unter Windows
Schreib einen Kommentar
Windows integrierte Apps deinstallieren
Liste der „Apps“ [bash] *3DBuilder* *BingFinance* *BingFoodAndDrink* *BingHealthAndFitness* *BingNews* *BingSports* *BingWeather* *MicrosoftEdge* *Microsoft.People* *MicrosoftOfficeHub* *MicrosoftSolitaireCollection* *WindowsAlarms *Windows.Photos* *WindowsCamera* *WindowsMaps* *WindowsPhone* *WindowsSoundRecorder* *XboxApp* *ZuneMusic* *ZuneVideo* *windowscommunicationsapps* *XboxApp* *Weather* *Office* [/bash] PowerShell als Administrator ausführen und hiermit deinstallieren: [bash] get-appxpackage -Name *XboxApp* … Weiterlesen
Veröffentlicht unter Windows
Schreib einen Kommentar
„One Drive“ in Windows 10 entfernen
[bash] @echo off cls set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe" set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe" echo OneDrive Prozess beenden echo. taskkill /f /im OneDrive.exe > NUL 2>&1 ping 127.0.0.1 -n 5 > NUL 2>&1 echo OneDrive deinstallieren echo. if exist %x64% ( %x64% /uninstall ) else ( … Weiterlesen
Veröffentlicht unter Windows
Schreib einen Kommentar
Drupal 7 hide h2 in h1
[bash] <h2> <a href="/node/5"></a> </h2> <span class="rdf-meta element-hidden" content="Arbeiten" property="dc:title"></span> [/bash]
Veröffentlicht unter Drupal
Schreib einen Kommentar
PowerShell Ausgabe filtern
[bash] netstat -an | findstr :25 [/bash] Gibt nur offene Verbindungen auf Port 25 aus.
Veröffentlicht unter PowerShell, Windows
Schreib einen Kommentar