Skip to content

Category «Windows»

Replicate files from Windows to FreeNAS

rsync

Rsync is a remote and local synchronization tool, it uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed. it is a built-in tool in Linux. To use it in Windows, either install WSL or download third-party rsync. In this post, I will demo how to …

Python Road-1:Python History and Introduction

Python History Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python’s design philosophy emphasizes code readability with its notable use of significant whitespace. it is a dynamically typed and garbage-collected language… Use Python for … Web Deployment: Django, Pyramid, Bottle, Tornado, Flask, web2pyGUI Deployment: tklnter, PyGObject, PyQt, PySide, Kivy, wxPythonScientific and Numeric: SciPy, Pandas, …

Certificate renewal with PowerShell in Exchange 2013

One customer requested us to renew their certificate because they received a pop-up message when opening Outlook client. Their Certificates Renewal List: mail certificate is going to expire in 7 days Microsoft Exchange Auth Certificate has expired for a couple of days. Root CA certificate is going to expire in 7 days. It’s a simple …

Export users from AD

There are many ways to export users from active directory, I think the easiest way is with PowerShell. With PowerShell ‘ Get-ADuser‘ command, we can export many user’s information. Export user’s name, Last Login date, last time set password date and save as csv file. When exporting users under specific OU, we need to add …