The following script allows you to create a share using PowerShell using the following command: CreateShare -Name “Share” -Path “C:\Share” -ReadAccess “Everyone” -FullAccess “Me”, “Other Admins”. See code below!
Update SharePoint STS certificate
Renew the current self-signed certificate using IIS via “Server Certificates”, right-clicking on the current certificate and running the “Create Self-Signed Certificate”. Export this new certificate by right-clicking it. Then run the following PowerShell script using PowerShell ISE with Administrator rights; .’C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\CONFIG\POWERSHELL\Registration\SharePoint.ps1′ $pfxPath = “your file here.pfx” $pfxPass = “your password […]
VLAN management on NetGear GS724TP
While working with our rather old but awesome Netgear GS724TPs I always run into the problem that the menus for the LAG and VLAN do not expand on any of the modern browsers. Even with the newest firmware versions (5.2.0.11) this is an issue. After alot of trial and error I have found a working […]
Create a custom install USB stick using DISM
Install a windows laptop and setup everything according to your wishes. On Windows 10 you will need to remove all the apps from MarketPlace before capturing the image with the following command in PowerShell: Get-AppxPackage | Remove-AppxPackage After you have done this open run: sysprep /oobe /generalize /shutdown Once this is done, boot into the […]
Find big files in unix
find / -xdev -type f -size +100M
Letting Ubuntu resolve .local domains from network DNS servers
Ubuntu uses the Avahi Daemon to rewrite .local domains to always be localhost. This can be prevented by editing the config file sudo gedit /etc/avahi/avahi-daemon.conf and setting changing #domain-name=local into domain-name=.localhost (note that there needs to be a . between the name you select and the = mark. After doing this run sudo service avahi-daemon […]
OneDrive running under Ubuntu
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 […]
Using G729 codec on Asterisk 13 with FreePBX 13 (on a x64 modern kernel)
We started using FreePBX instead of Lync recently and after a while we ran into the following error: WARNING[30830][C-00001548] channel.c: Unable to find a codec translation path: (slin) -> (g729) Turns out that even though G729 is by default shown in the GUI of FreePBX it is not turned on by default since it requires […]
Repair windows without a reinstall
I’ve always used this command to repair windows: SFC /scannow This was my goto drug for fixing windows problems but now I have learned about a bit of an undocumented fix which claims to be even better: dism /online /cleanup-image /restorehealth I will try it out from now on and report back on any good […]
Delete OEM partitions in Windows
The awnser: diskpart.exe! Hit “Windows Key” + “R” to open the run dialogue box and type “diskpart” and hit “OK” to open a command prompt window. Type “list disk”. Type “select disk n”. Type “list part”. Type “select part n”. Type “delete partition override”. Type “exit”. Thanks to http://www.disk-partition.com/blog/how-to-delete-an-oem-partition/