Programming
How to parse a .env file with PHP
Parsing a .env (dotenv) file in PHP can be done by using a dedicated library or writing a simple custom…
Is PHP list() function deprecated in 2023?
At the time of writing this in December 2023, the list() function in PHP is not deprecated. This function is…
How to Create a Function in PowerShell
If you have worked with other programming languages, you have may used functions for code reusability. You can also create functions in PowerShell.…
How to Add a User to a Group Using PowerShell
You can add a user into a group using active directory users and computer (ADUC) mmc snap in or by…
How to Read a Text File Using PowerShell
You can read a text file and display its content using get-content cmdlet in PowerShell. Read textfile example Execute the…
How to Generate Random Numbers Using PowerShell
When you have to generate random passwords for users, you can execute the get-random command let on PowerShell to create it.…