This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Call WScript.Quit(Main()) | |
Function Main() | |
Main = 0 | |
Dim ObjShell, StrPaths, AryPaths | |
Set ObjShell = WScript.CreateObject("WScript.Shell") | |
StrPaths = ObjShell.ExpandEnvironmentStrings("%PATH%") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Call Main() | |
Call WScript.Quit() | |
Sub Main() | |
Const CstStrILO3 = "https://192.168.1.100/" | |
Dim ObjIE, ObjDoc, ObjLinks, ObjLink | |
Set ObjIE = WScript.CreateObject("InternetExplorer.Application") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[oledb] | |
; Everything after this line is an OLE DB initstring | |
Provider=MSOLEDBSQL;Integrated Security=SSPI;Data Source=(LocalDB)\MSSQLLocalDB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
'doc | |
'CORESERVER https://apidoc.coreserver.jp/#/tool/2017/07/19/tool-ssh-add.html | |
'XREA https://apidoc.xrea.com/#/tool/2017/07/19/tool-ssh-add.html | |
'接続先情報 | |
Const CstStrTarget = "username:[email protected]" | |
'Const CstStrTarget = "username:[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Call WScript.Quit(Main()) | |
Function Main() | |
Dim ObjShell, ObjResult, ObjStdIn | |
Set ObjShell = WScript.CreateObject("WScript.Shell") | |
Set ObjResult = ObjShell.Exec("powershell -NoLogo -Command -") | |
Set ObjStdIn = ObjResult.StdIn | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Const CstStrGit = "C:\Program Files\Git\bin\git.exe" | |
Const CstStrAll = "*" | |
'引数取得 | |
Dim ObjArgs, ObjUnnamed, StrWork | |
Set ObjArgs = WScript.Arguments | |
Set ObjUnnamed = ObjArgs.Unnamed | |
StrWork = ObjUnnamed(0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[MIME] | |
; EXT = "mime/type,disposition,forceEZget,checkout,pcsharing,rule[direct(EZget)|copyright(EZget2001)]" | |
TXT = "text/plain,devte4z,1,1,1,1" | |
CLD = "text/plain,devhldy" | |
3GP = "audio/3gpp,devmgzz,0,1,1" | |
3G2 = "audio/3gpp2,devmpzz,0,1,1" | |
LST = "audio/3gpp2,devlvzz,0,0,0" | |
LIV = "video/3gpp2,devlvzx,0,0,0,1" | |
MP4 = "video/mp4,,0,1,1" | |
PNG = "image/png,dev8aww,1,1,1,1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="Shift_JIS"?> | |
<package> | |
<?component error="true" debug="true"?> | |
<component id="Mitaken.Mail"> | |
<!-- SMTP Configuration --> | |
<resource id="SMTP_HOST">[email protected]</resource> | |
<resource id="SMTP_PORT">25</resource> | |
<resource id="SMTP_FROM">[email protected]</resource> | |
<resource id="SMTP_USER"></resource> | |
<resource id="SMTP_PASS"></resource> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Upload to ~/install.sh | |
#Run '$ sh install.sh' | |
#Install gettext | |
cd ~/ | |
wget http://ftp.gnu.org/pub/gnu/gettext/gettext-latest.tar.gz | |
mkdir gettext && tar xvf gettext-latest.tar.gz -C gettext --strip-components=1 | |
cd gettext |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Const CstStrDomain = "http://192.168.179.1" | |
Const CstStrReboot = "/index.cgi/reboot_main" | |
Const CstStrRebootSet = "/index.cgi/reboot_main_set" | |
Dim ObjHttp, StrBody | |
Set ObjHttp = WScript.CreateObject("Msxml2.XMLHTTP.6.0") | |
On Error Resume Next |
NewerOlder