Intune – Set up Power Management

#1 Access Intune > click Device configuration > click Profiles > click Create profile button #2 Select Platform: Windows 10 or later > click Profile: choose Custom > click Create button > Enter Name and Description  > In Custom OMA-URI Settings, click Add.   #3 Add each of these:   Name: DisplayOffTimeoutOnBattery OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Power/DisplayOffTimeoutOnBattery Data Read More …

Batch – Replace Specific String in Text File

:: MrNetTek :: eddiejackson.net/blog :: 3/25/2020 :: free for public use :: free to claim as your own @echo off setlocal enabledelayedexpansion :: variables set Input=Text.tmp set Output=Text.dat set strOld=9F1AE7B34381DFD1111 set strNew=9F1AE7B34381DFD9999 :: prep temp file move “%Output%” “%Input%” if exist “%Output%” del /q “%Output%” :: search for /f “tokens=1* delims=[]” %%a in (‘type “%Input%” Read More …

Citrix Workspace App

Description Citrix Workspace app for Windows is easy-to-install software that provides access to your applications and desktops using Citrix Virtual Apps and Desktops from a remote client device. Citrix Workspace app provides access from your desktop, Start menu, Citrix Workspace user interface, or web browsers. You can use Citrix Workspace app on domain and non-domain Read More …

Pulse Secure

Description The Pulse Client creates a secure connection to your corporate Pulse Connect Secure SSL VPN gateway to provide instant access to business applications and data from anywhere at any time. The Pulse Client is a corporate SSL-based VPN client that requires a Pulse Connect Secure SSL VPN gateway running version 8.1 or later. Please Read More …

Assembly – Hello World – Variation 2

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/10/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello2.asm ; ; COMPILE ; nasm -fwin64 hello2.asm && gcc -o hello2.exe Read More …

Assembly – Check Prime Number

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; prime.asm ; ; COMPILE ; nasm -fwin64 prime.asm && gcc -o prime.exe Read More …

Assembly – GUI Message Box

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Assembly Message Box ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello_gui.asm ; ; COMPILE ; nasm -fwin64 hello_gui.asm && gcc -o hello_gui.exe Read More …

Amazon WorkSpaces Client

Description Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows or Amazon Linux desktops for your users, known as WorkSpaces. Amazon WorkSpaces eliminates the need to procure and deploy hardware or install complex software. You can quickly add or remove users as your needs change. Users can access their virtual desktops from multiple devices Read More …

Python Vault

Python scripts demonstrating some of the functionality of the language. also see: posts   — 275 scripts — AddressBook.py Anagram.py ArgumentParser.py Arguments.py Array.py BinarySearch.py BinarySearchTree.py BinaryToDecimal.py python/BinaryTree.py BreadthFirstTraversal.py BubbleSort.py BucketSort.py CharCount.py CheckGreater.py CipherText.py Closures.py CountingSort.py CountVowels.py DecimalToBinary.py Decorators.py DepthFirstTraversal.py DoublyLinkedList.py EvenOdd.py Factorial.py Factorial2.py Fibonacci.py FileSearching.py Graph.py GuessTheNumber.py HangmanGame.py HashingFile.py HashTable.py HeapSort.py InsertionSort.py Isogram.py LCM.py ListComprehensions.py Read More …