Skip to content

Commit f86b443

Browse files
committed
adding existing bat files
1 parent ca16bb2 commit f86b443

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>scripts</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.python.pydev.PyDevBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.python.pydev.pythonNature</nature>
16+
</natures>
17+
</projectDescription>

.pydevproject

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<?eclipse-pydev version="1.0"?><pydev_project>
3+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
4+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
5+
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
6+
<path>/${PROJECT_DIR_NAME}</path>
7+
</pydev_pathproperty>
8+
</pydev_project>

cmd password fix .bat

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
echo [on] [Created By Disharuhdin@DELL]
2+
3+
taskkill /F /IM iexplore.exe
4+
taskkill /f /IM outlook.exe
5+
6+
cmdkey.exe /list > "%TEMP%\List.txt"
7+
findstr.exe Target "%TEMP%\List.txt" > "%TEMP%\tokensonly.txt"
8+
FOR /F "tokens=1,2 delims= " %%G IN (%TEMP%\tokensonly.txt) DO cmdkey.exe /delete:%%
9+
del "%TEMP%\*.*" /s /f /q
10+
11+
rd /s /q %temp%
12+
mkdir %temp%
13+
14+
del "%temp%" /s /q
15+
del "%tmp%" /s /q
16+
17+
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
18+
19+
echo [off]

sendtoemacs.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@"C:\Program Files (x86)\emacs-24.5-bin-i686-mingw32\bin\emacsclientw.exe" -n -a "C:\Program Files (x86)\emacs-24.5-bin-i686-mingw32\bin\runemacs.exe" --server-file d:\.emacs.d\server\server %*
2+

vnc.ahk

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
2+
; #Warn ; Enable warnings to assist with detecting common errors.
3+
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4+
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
5+
6+
#v::
7+
IfWinExist PuTTY Fatal Error
8+
{
9+
Winactivate
10+
send, {enter}
11+
}
12+
IfWinExist PuTTY (inactive)
13+
{
14+
Winactivate
15+
send, !{space}r
16+
}
17+
If !WinExist("ahk_class PuTTY")
18+
{
19+
Run, putty -load "cdt-r720-3"
20+
}
21+
Run, C:\Users\lee_ballard\AppData\Roaming\RealVNC\VNC Address Book\cdt-r720-3 corp.vnc
22+
return

0 commit comments

Comments
 (0)