Install Windows Admin Console on a Domain Controller

How to install Windows Admin Console on a Domain Controller. Continue reading →

Another Sage 50 user or Workstation is Accessing this Company…

Another Sage 50 user or workstation is accessing this company area or performing a similar company process. Please wait a moment and try again. If you believe you received this message in error, have all users exit Sage 50 and try again. We are experiencing this exact issue.  I'll be looking more in-depth to see if I can narrow it down.  A cursory Google search for:  sage "pt.lck" brought me to this forum post and the post you replied to about a month ago.  These problems Continue reading →

'wc -l' equivelant for Windows… kinda

Came across a cool find today that I can implement in Windows to replicate wc -l. When wanting to count how many lines in a file on Windows, I can use the following. type test.txt | find /v /c "" This is saying to count /c all the lines not containing /v nothing "". test.txt a b c d e g type test.txt | find /v /c "" 8 Note that it counts the empty line between e and g in test.txt. It would also count any extra lines that do not contain data (carriage returns). Continue reading →

Login to WordPress from Python

I've been trying to learn some Python and have been tinkering with the requests module. Here is how I am able to log into a webpage, such as WordPress. import requests url = "https://techish.net/wp-login.php" redirect_to = "https://techish.net/wp-admin/" with requests.Session() as session: post = session.post(url, data={ 'log': 'admin', 'pwd': 'password', 'redirect_to': redirect_to }, allow_redirects=True) get = session.get(redirect_to, cookies=post.cookies) Continue reading →

#python, #wordpress

Sage Peachtree 2013 crashes when posting Receipt

Sage Peachtree 2013 was crashing every time while attempting to save a Receipt entry. This occurred only via Remote Desktop. Peachtree 2013 is installed on a Windows 10 1903 system, 8GB RAM and Intel 530 Graphics. Remote machine is a Windows 8.1 system, 4GB RAM and Intel Graphics. Resolution was to change RDP properties to color of 24bit Color instead of 32bit and also uncheck Use Persistent Bitmapping. Continue reading →