Found and installed a great project to use OneDrive on Ubuntu; https://github.com/xybu/onedrive-d-old Only issue I had was that I needed to run the following command before the daemon would start but now it runs fine! sudo pip3 install click –upgrade After running the install I did the following commands to make sure my Documents folder on […]
Posts in the Personal category:
Upgrading Debian 7 to 8
https://linuxconfig.org/how-to-upgrade-debian-linux-system-from-wheezy-to-jessie-stable-release
Space Engineers auto-updating Dedicated Server
Space Engineers dedicated servers come with one big down-fall: No automatic updating for the dedicated server. Your client does auto-update which is annoying and so I decided to make a small powershell script using DropBox and Junction.
Bijna helft Nederlandse banken beschermt u niet (optimaal) tegen phishing
U heeft nog nooit van SPF gehoord maar wel van phishing, mensen die u irritante e-mail sturen namens uw bank en op die manier u geld afhandig proberen te maken. SPF kan u hier (deels) tegen beschermen doordat banken bekend maken welke server namens hun e-mail mogen sturen en welke niet. Dit is een klein […]
Script to remove AutoMapping from select or all users in Exchange
An adeptation of the script by Matthias R Jessen. # Get all mailboxes in the forest $Mailboxes = Get-User -OrganizationalUnit “Employees” | Get-Mailbox -ResultSize unlimited -IgnoreDefaultScope $ConfirmPreference = “None” # Iterate over each mailbox foreach($Mailbox in $Mailboxes) { try { # Try to run the example fix against the current $Mailbox […]
Getting a VPN on Windows 10 working without default gateway
Found a great article here: http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_web/how-to-disable-default-gateway-remote-in-vpm-with/6d4e1090-dbfc-4474-bcaf-cf4d60d0a2f8?auth=1 Commands are: Get-VpnConnection Set-VpnConnection -Name “myVPN” -SplitTunneling $True
How to get an A grade on SSLLabs with IIS 8.5 on Windows Server 2012 R2
After having some serious problems trying to find proper documentation for how to fix some of the bigger leaks in IIS (such as logjam, FREAK, POODLE) I became frustrated with the lack of documentation. Microsoft itself will point you to Nartac IIS Crypto which is a great tool, but I needed to roll these fixes out […]
Using Chocolatey to install a new laptop
I always dread the moment I have to reinstall my own laptop for work or home because of all the software I have to put on it. Recently I have discovered chocolatey and this has made it a very easy installation procedure. I did have to drop and swap some programs from there but beyond that it has […]
Removing old 1Password vaults from the selection menu
After doing alot of fiddling with my password vaults for the Windows Phone app I had a large list of unused password vaults in the quick select menu. To remove these I found the following location: HKEY_CURRENT_USER\Software\AgileBits\1Password 4\MRU. Here you can delete the keys for vaults you no longer use.
Installing PECL mods for PHP on IIS
Although PHP.net mentions there are no DLLs for PECL they can be found here windows.php.net/downloads/pecl/releases/ Find the module you need, select a version (I always opt for the most recent version that will work with my flavor of PHP). To figure out which version you need run the phpinfo() command on your server. In the […]