New pages
From Lucca's Wiki
Jump to navigationJump to search
- 22:56, 10 December 2024 Clipboardbuffers.py (hist | edit) [2,604 bytes] 45.27.172.161 (talk) (Created page with "import os import sys from PyHotKey import Key, keyboard from tkinter import * scriptFolder = (os.path.dirname(__file__)) def inputbox(inputBuffer): inputText = "No Input Given Yet" master = Tk() textbox = Entry(master) textbox.pack() textbox.focus_set() def onclick(pos): nonlocal inputText inputText = textbox.get() print(f"Clipboard buffer {inputBuffer} was set to: {inputText}") master.destroy() b = Button(...")
- 22:09, 10 December 2024 Exit Audit Mode (hist | edit) [964 bytes] 45.27.172.161 (talk) (Created page with "Source: https://answers.microsoft.com/en-us/windows/forum/all/how-to-exit-audit-mode/34adf896-a0fb-4972-9d23-e37682029a28 How to Exit Audit Mode If you are having unsuccessful attempts at exiting audit mode and getting "fatal error messages", the following is what I did that worked: Type regedit in the windows search bar and press enter. Navigate to HKEY_LOCAL_MACHINE>SYSTEM>Setup>Status. By clicking on the "Status", you will see a registry key item called "AuditB...")
- 22:09, 10 December 2024 Registry Tweaks/Fixes (hist | edit) [19 bytes] 45.27.172.161 (talk) (Created page with "Exit Audit Mode")
- 17:29, 10 December 2024 CopyResponses.py (hist | edit) [8,610 bytes] 45.27.172.161 (talk) (Created page with " import pyperclip import os import sys if os.name == 'nt': import win32api myName = win32api.GetUserNameEx(3) else: myName = "Lucca P." supportNumber = "(954) 474 2204" altSupportNumber = "(954) 713 2601" emailFinisher = f""" Thank you and have a wonderful rest of your day! {myName}""" #functions below def copy(content): pyperclip.copy(content) def clear(): if os.name == 'nt': os.system('cls') else: os.system('clear') #functions above clear() #...")
- 17:27, 10 December 2024 Supportdesk.ahk (hist | edit) [5,901 bytes] 45.27.172.161 (talk) (Created page with " CoordMode, Mouse, Screen ;Pull your full name from AD nSize:= VarSetCapacity(sFull, 1023) + 1 DllCall("secur32\GetUserNameEx", "Uint", 3, "str", sFull, "UintP", nSize) myName := sFull myFirstName := firstWordOfString(myName) ;HOTKEYS f1::SendRaw, %clipboard% Insert::Reload !Scrolllock::showMousePosition() f8::InputBox, callBackNumber, What is the callback number?, cb:,, Width, Height, 640, 480, English, 0 +f8::Send, cb: ``%callBackNumber%`` !f8::Send, cb:...")
- 17:25, 10 December 2024 Focusjump.ahk (hist | edit) [12,787 bytes] 45.27.172.161 (talk) (Created page with "#Requires AutoHotkey v2.0 ;Make a file in the script's folder called lefthanded.txt if you do want left handed keybinds A_MaxHotkeysPerInterval := 20000 ;CapsLock, Numlock, and ScrollLock state SetCapsLockState "AlwaysOff" SetScrollLockState "AlwaysOff" SetNumLockState "AlwaysOff" ;Screenshot on PrintScreen Key & f14 F14:: PrintScreen::Run "ms-screenclip:" ;ScreenConnect Only Hotkeys: #HotIf WinActive("ahk_exe ScreenConnect.ClientService.exe") or WinActive("ahk_exe S...")
- 17:25, 10 December 2024 Keyboard Navigation Scripts (hist | edit) [62 bytes] 45.27.172.161 (talk) (Created page with "focusjump.ahk")
- 19:03, 6 December 2024 OSX Commands (hist | edit) [197 bytes] 45.27.172.161 (talk) (Created page with "Disable Mac Address Randomization Globally sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist PrivateMACAddressModeSystemSetting -int 1")