All public logs
From Lucca's Wiki
Jump to navigationJump to search
Combined display of all available logs of Lucca's Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:56, 10 December 2024 45.27.172.161 talk created page Clipboardbuffers.py (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 45.27.172.161 talk created page Exit Audit Mode (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 45.27.172.161 talk created page Registry Tweaks/Fixes (Created page with "Exit Audit Mode")
- 17:29, 10 December 2024 45.27.172.161 talk created page CopyResponses.py (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 45.27.172.161 talk created page Supportdesk.ahk (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 45.27.172.161 talk created page Focusjump.ahk (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 45.27.172.161 talk created page Keyboard Navigation Scripts (Created page with "focusjump.ahk")
- 19:03, 6 December 2024 45.27.172.161 talk created page OSX Commands (Created page with "Disable Mac Address Randomization Globally sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist PrivateMACAddressModeSystemSetting -int 1")
- 17:17, 5 November 2024 45.27.172.161 talk created page Example User onboarding & offboarding Scripts (Created page with "<hr>User Onboarding<hr> <hr>User Offboarding<hr> echo "Connecting to 365..." Connect-MgGraph -NoWelcome -TenantId $tenantID Pause echo "Connecting to exchange online..." Connect-ExchangeOnline -UserPrincipalName $tenantAdminUsername Pause echo "Connecting to MSOnline..." Connect-MsolService Pause $user = Get-MgUser -UserId $userEmail echo "Making user a shared mailbox..." Set-Mailbox $userEmail -Type Shared echo "Waiting 60 seconds for the changes to appl...")
- 14:19, 17 June 2024 45.27.172.161 talk created page Commands (Created page with "COMMON CMD USED <hr> The ipconfig command is a command-line utility used to display and manage the IP address assigned to a machine. It provides information about the current TCP/IP network configuration, including the IP address, subnet mask, and default gateway for all adapters . In Windows, typing ipconfig without any parameters displays the computer's currently assigned IP, subnet mask, and default gateway addresses. Additional parameters can be used to perform var...")
- 18:17, 3 June 2024 45.27.172.161 talk created page Hyper-V on Windows Home (Created page with "dir /b "%SystemRoot%\servicing\Packages\*Hyper-V*.mum" > hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" del hyper-v.txt Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL pause")
- 16:45, 24 May 2024 45.27.172.161 talk created page Distro Download Links (Created page with "https://sineware.ca/prolinux/")
- 18:28, 16 May 2024 45.27.172.161 talk created page Docker Installation on Debian (Created page with " sudo apt install docker.io sudo systemctl enable --now docker sudo usermod -aG docker {YOURUSERNAME}")
- 14:32, 15 May 2024 45.27.172.161 talk created page Make CMD Open Faster on Windows 11 (Created page with "https://www.elevenforum.com/t/change-default-terminal-application-in-windows-11.3410/")
- 16:15, 14 May 2024 45.27.172.161 talk created page Getting New Teams to install when it refuses to (Created page with "Add-ProvisionedAppPackage -Online -PackagePath "{PATH-TO-TEAMS}.msix" -SkipLicense")
- 15:58, 13 May 2024 45.27.172.161 talk created page ZEK Office Printers (Created page with ""Printer 1": HP Laserjet Pro 400 Color MFP M475Dn "Printer 2": HP Laserjet P3015 | 10.208.1.41 "Printer 3": HP Laserjet P3015 | 10.208.1.42")
- 17:58, 10 May 2024 45.27.172.161 talk created page Violentmonkey Script Documentation for Whit (Created page with "Open New Tabs: Alt+T: New Ticket Alt+Shift+T: Service Ticket Search")
- 20:47, 6 May 2024 45.27.172.161 talk created page End of Life (Created page with "Version End of Support Windows Server 2022 Oct 14, 2031 Windows Server 2019 Jan. 9, 2029 Windows Server 2016 Jan. 12, 2027 Windows Server 2012 R2 Oct 10, 2023")
- 18:00, 6 May 2024 45.27.172.161 talk created page Talk:VFIO Anti-Cheat Bypass Tools (Created page with "Git gud scrub Ẁ̵̙̩ḫ̶̛͉̝̮͎̻͖̈́̐̀̊͌̉͗͛̄̊̓̈́͂̃͆͂i̵̖̬̓̍̑͠͠c̴̢̧͓͍̳̞̥̣̗̯͉̘͉͎̜̲̈́̄͌̒̄͆̉̆͗̈́̕͝ͅh̸͓͖̜̲̠͍͕̗̮͚̯̉̑͑̍̀̈̓͂̾͐͠ ̴̧͓̝̼̻̘̬̪͖̤̟̭̥͇̟̺̙̔̎̏̿͒͝͠͝d̸̨̬͔͖͓̦̼͈̼͈̭̙͇̱̪̺́̉͗̈́̐̾̂ͅő̵̢̡̺̬͕̭̣͍̖̱̼̹̩̖̫̝̔̆̅ ̵̨͙̲̤̻͕̾̊̃́̂̈́͊̍̕̕y̴̻̙̗̋̓̋͌̈́͆̄̕ở̸͔͙̹̉̐̀̂̈́͗̌͜ǔ̴̩̻̭̬̇̏́̑̈...")
- 17:59, 6 May 2024 45.27.172.161 talk created page VFIO Anti-Cheat Bypass Tools (Created page with "https://github.com/zhaodice/qemu-anti-detection https://github.com/zhaodice/proxmox-ve-anti-detection")
- 16:15, 6 May 2024 45.27.172.161 talk created page Modeline Generators (Created page with "https://arachnoid.com/modelines/index.html")
- 16:14, 6 May 2024 45.27.172.161 talk created page Analog Video Articles (Created page with "https://www.cocopedia.com/wiki/index.php/15kHz_SVGA_Monitors https://www.geocities.ws/podernixie/htpc/modes-en.html#especial")
- 15:35, 29 March 2024 45.27.172.161 talk created page Libvirt Setup (Created page with "How to setup Qemu/KVM using Libvirt on debian. <lr> Install Libvirt <code>sudo apt install libvirt-daemon-system</code> <code>sudo apt install virt-manager</code>")
- 15:47, 27 March 2024 45.27.172.161 talk created page Windows Keyboard Shortcuts (Created page with "Open About your PC Win+Pause Win+X --> y Reboot a PC (don't use this when you're remoting on calls because you could accidentally shut down your pc instead) <code>Win+X --> u --> r</code> Shutdown a PC (don't use this when you're remoting on calls because you could accidentally shut down your pc instead) <code>Win+X --> u --> u</code> Logout from a PC (don't use this when you're remoting on calls because you could accidentally log out from your pc instead)...")
- 13:58, 27 March 2024 45.27.172.161 talk created page Remote Desktop Setup (Created page with "This is the page that hosts the download links for the Microsoft Remote Desktop App commonly used for Azure Virtual Desktop. https://learn.microsoft.com/en-us/azure/virtual-desktop/users/connect-windows?pivots=remote-desktop-msi")