Initial commit
This commit is contained in:
50
examples/Remote-PC.rdp
Normal file
50
examples/Remote-PC.rdp
Normal file
@@ -0,0 +1,50 @@
|
||||
screen mode id:i:2
|
||||
use multimon:i:0
|
||||
desktopwidth:i:1920
|
||||
desktopheight:i:1080
|
||||
session bpp:i:32
|
||||
winposstr:s:0,3,0,0,800,600
|
||||
compression:i:1
|
||||
keyboardhook:i:2
|
||||
audiocapturemode:i:0
|
||||
videoplaybackmode:i:1
|
||||
connection type:i:7
|
||||
networkautodetect:i:1
|
||||
bandwidthautodetect:i:1
|
||||
displayconnectionbar:i:1
|
||||
enableworkspacereconnect:i:0
|
||||
disable wallpaper:i:0
|
||||
allow font smoothing:i:0
|
||||
allow desktop composition:i:0
|
||||
disable full window drag:i:1
|
||||
disable menu anims:i:1
|
||||
disable themes:i:0
|
||||
disable cursor setting:i:0
|
||||
bitmapcachepersistenable:i:1
|
||||
full address:s:192.168.88.21
|
||||
audiomode:i:0
|
||||
redirectprinters:i:1
|
||||
redirectcomports:i:0
|
||||
redirectsmartcards:i:1
|
||||
redirectclipboard:i:1
|
||||
redirectposdevices:i:0
|
||||
autoreconnection enabled:i:1
|
||||
authentication level:i:2
|
||||
prompt for credentials:i:0
|
||||
negotiate security layer:i:1
|
||||
remoteapplicationmode:i:0
|
||||
alternate shell:s:
|
||||
shell working directory:s:
|
||||
gatewayhostname:s:
|
||||
gatewayusagemethod:i:4
|
||||
gatewaycredentialssource:i:4
|
||||
gatewayprofileusagemethod:i:0
|
||||
promptcredentialonce:i:0
|
||||
gatewaybrokeringtype:i:0
|
||||
use redirection server name:i:0
|
||||
rdgiskdcproxy:i:0
|
||||
kdcproxyname:s:
|
||||
drivestoredirect:s:
|
||||
username:s:ChiaYing
|
||||
domain:s:
|
||||
password 51:b:01000000D08C9DDF0115D1118C7A00C04FC297EB01000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
11
examples/desktop-icons.reg
Normal file
11
examples/desktop-icons.reg
Normal file
@@ -0,0 +1,11 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
|
||||
"{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
|
||||
"{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0}"=dword:00000000
|
||||
"{645FF040-5081-101B-9F08-00AA002F954E}"=dword:00000000
|
||||
|
||||
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu]
|
||||
"{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
|
||||
"{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0}"=dword:00000000
|
||||
"{645FF040-5081-101B-9F08-00AA002F954E}"=dword:00000000
|
||||
39
examples/map-drive-S.cmd
Normal file
39
examples/map-drive-S.cmd
Normal file
@@ -0,0 +1,39 @@
|
||||
@echo off
|
||||
echo Setting up network drive S: for User account...
|
||||
|
||||
:: Map network drive with credentials
|
||||
echo Mapping \\192.168.88.232\SALES to S: drive...
|
||||
net use S: \\192.168.88.232\SALES /user:sales "S@a1es" /persistent:yes
|
||||
|
||||
if %errorlevel%==0 (
|
||||
echo.
|
||||
echo [SUCCESS] Network drive S: mapped successfully!
|
||||
echo Target: \\192.168.88.232\SALES
|
||||
echo Drive: S:
|
||||
echo Username: sales
|
||||
echo Access: Authenticated
|
||||
echo.
|
||||
echo Opening File Explorer to show the drive...
|
||||
explorer /select,S:\
|
||||
echo.
|
||||
echo Drive S: is now available in File Explorer.
|
||||
echo This mapping will persist after reboot.
|
||||
echo.
|
||||
) else (
|
||||
echo.
|
||||
echo [ERROR] Failed to map network drive S:
|
||||
echo Please check:
|
||||
echo - Network connectivity to 192.168.88.232
|
||||
echo - Username: sales
|
||||
echo - Password: S@a1es
|
||||
echo - Share exists: \\192.168.88.232\SALES
|
||||
echo.
|
||||
)
|
||||
|
||||
echo.
|
||||
echo This setup file will now delete itself...
|
||||
timeout /t 5 /nobreak >nul
|
||||
|
||||
:: Self-delete this batch file
|
||||
del "%~f0"
|
||||
exit
|
||||
34
examples/map-drive-for-user-RD.cmd
Normal file
34
examples/map-drive-for-user-RD.cmd
Normal file
@@ -0,0 +1,34 @@
|
||||
@echo off
|
||||
echo Setting up network drive R: for User account...
|
||||
|
||||
:: Map network drive with guest access
|
||||
echo Mapping \\192.168.88.231\RD to R: drive...
|
||||
net use R: \\192.168.88.231\RD /user:guest "" /persistent:yes
|
||||
|
||||
if %errorlevel%==0 (
|
||||
echo.
|
||||
echo [SUCCESS] Network drive R: mapped successfully!
|
||||
echo Target: \\192.168.88.231\RD
|
||||
echo Drive: R:
|
||||
echo Access: Anonymous/Guest
|
||||
echo.
|
||||
echo Opening File Explorer to show the drive...
|
||||
explorer /select,R:\
|
||||
echo.
|
||||
echo Drive R: is now available in File Explorer.
|
||||
echo This mapping will persist after reboot.
|
||||
echo.
|
||||
) else (
|
||||
echo.
|
||||
echo [ERROR] Failed to map network drive R:
|
||||
echo Please check network connectivity to 192.168.88.231
|
||||
echo.
|
||||
)
|
||||
|
||||
echo.
|
||||
echo This setup file will now delete itself...
|
||||
timeout /t 3 /nobreak >nul
|
||||
|
||||
:: Self-delete this batch file
|
||||
del "%~f0"
|
||||
exit
|
||||
34
examples/map-drive-for-user.cmd
Normal file
34
examples/map-drive-for-user.cmd
Normal file
@@ -0,0 +1,34 @@
|
||||
@echo off
|
||||
echo Setting up network drive R: for User account...
|
||||
|
||||
:: Map network drive with guest access
|
||||
echo Mapping \\192.168.88.231\RD to R: drive...
|
||||
net use R: \\192.168.88.231\RD /user:guest "" /persistent:yes
|
||||
|
||||
if %errorlevel%==0 (
|
||||
echo.
|
||||
echo [SUCCESS] Network drive R: mapped successfully!
|
||||
echo Target: \\192.168.88.231\RD
|
||||
echo Drive: R:
|
||||
echo Access: Anonymous/Guest
|
||||
echo.
|
||||
echo Opening File Explorer to show the drive...
|
||||
explorer /select,R:\
|
||||
echo.
|
||||
echo Drive R: is now available in File Explorer.
|
||||
echo This mapping will persist after reboot.
|
||||
echo.
|
||||
) else (
|
||||
echo.
|
||||
echo [ERROR] Failed to map network drive R:
|
||||
echo Please check network connectivity to 192.168.88.231
|
||||
echo.
|
||||
)
|
||||
|
||||
echo.
|
||||
echo This setup file will now delete itself...
|
||||
timeout /t 3 /nobreak >nul
|
||||
|
||||
:: Self-delete this batch file
|
||||
del "%~f0"
|
||||
exit
|
||||
18
examples/setup-desktop-icons.cmd
Normal file
18
examples/setup-desktop-icons.cmd
Normal file
@@ -0,0 +1,18 @@
|
||||
@echo off
|
||||
echo Setting up desktop icons for User...
|
||||
|
||||
:: Import registry settings
|
||||
regedit /s "C:\Users\User\Desktop\desktop-icons.reg"
|
||||
|
||||
:: Refresh desktop
|
||||
rundll32.exe user32.dll,UpdatePerUserSystemParameters
|
||||
|
||||
:: Clean up
|
||||
del "C:\Users\User\Desktop\desktop-icons.reg"
|
||||
del "C:\Users\User\Desktop\setup-desktop-icons.cmd"
|
||||
|
||||
echo Desktop icons configured successfully!
|
||||
echo Please restart Windows Explorer or reboot to see the icons.
|
||||
|
||||
timeout /t 5
|
||||
exit
|
||||
23
examples/thunderbird-config.json_BACKUP_20260423113319
Normal file
23
examples/thunderbird-config.json_BACKUP_20260423113319
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"WindowsUser": "Admin",
|
||||
"ProfileName": "default",
|
||||
"Identity": {
|
||||
"FullName": "Your Name",
|
||||
"Email": "you@example.com"
|
||||
},
|
||||
"Incoming": {
|
||||
"Type": "imap",
|
||||
"Hostname": "imap.gmail.com",
|
||||
"Port": 993,
|
||||
"SocketType": "SSL",
|
||||
"Username": "you@example.com",
|
||||
"AuthMethod": "normal"
|
||||
},
|
||||
"Outgoing": {
|
||||
"Hostname": "smtp.gmail.com",
|
||||
"Port": 465,
|
||||
"SocketType": "SSL",
|
||||
"Username": "you@example.com",
|
||||
"AuthMethod": "normal"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user