반응형

Task Scheduler Manager v1.0 (작업 스케줄러 등록기 샘플)

https://noways.tistory.com/2013

 

작업 스케줄러 등록기 v1.5 (Task Scheduler Manager)

Task Scheduler Manager v1.5 (작업 스케줄러 등록기) 1. 작업 스케줄러 등록기 실행 시 Setting.ini 파일이 없으면 생성   └▶ Setting.ini 파일이 있으면 로드하여 사용   └▶ 기본 프리셋 매주 월, 화, 수,

noways.tistory.com

https://noways.tistory.com/2018

 

작업 스케줄러 등록기 v2.0 (Task Scheduler Manager)

스케줄러 등록기 v2.0 기능 추가 및 개선https://noways.tistory.com/2013 Task Scheduler Manager v1.5 (작업 스케줄러 등록기)Task Scheduler Manager v1.5 (작업 스케줄러 등록기) 1. 작업 스케줄러 등록기 실행 시 Setting

noways.tistory.com

 

1. 기본 요일, 시간에 시스템이 종료되도록 윈도우 스케줄을 등록할 수 있는 생성기입니다.
2. 스크립트와 인수를 변경하여 응용할 수 있습니다. (배치 파일, 특정 프로그램 실행 기타 등등)
3. 등록된 작업 목록에 최상위 스케줄 목록이 출력됩니다. (하위 목록 출력 제외)
4. 작업 이름, 스크립트, 인수, 요일, 시간을 선택하고 스케줄 생성으로 등록할 수 있습니다.
5. 중복된 작업 스케줄이 있으면 New를 붙여서 생성됩니다.
6. 리스트 목록에서 스케줄을 선택하고 삭제할 수 있습니다.
7. 작업 스케줄러 열기 버튼으로 세부 정보를 확인 할 수 있습니다.

 

 

 

Setting.ini 기본 프리셋 생성

Setting.ini 기본 프리셋

[TaskScheduler]
Tas=Shutdown Task
Scr=C:\Windows\System32\shutdown.exe
Arg=-s -t 600
Days=MON,TUE,WED,THU,FRI
Hour=18
Minute=00

Task_Scheduler_Manager 사용 방법 - 움짤 GIF

schtasks /create /tn "Shutdown Task" /tr C:\Windows\System32\shutdown.exe -s -t 10 /sc weekly /d MON,TUE,WED,THU,FRI /st 07:55

schtasks /create: 새로운 작업을 생성합니다.
/tn "Shutdown Task": 작업 이름을 "Shutdown Task"로 지정합니다.
/tr C:\Windows\System32\shutdown.exe -s -t 10: 이 작업이 실행될 때 shutdown.exe 명령어를 실행합니다.
-s: 시스템을 종료합니다.
-t 10: 종료하기 전에 10초의 대기 시간을 설정합니다.
/sc weekly: 작업을 매주 실행되도록 스케줄을 설정합니다.
/d MON,TUE,WED,THU,FRI: 작업이 실행될 요일을 월요일(MON)부터 금요일(FRI)까지로 지정합니다.
/st 07:55: 작업이 매일 오전 7시 55분에 실행되도록 시작 시간을 설정합니다.

 

일요일 07:55분 10초 후에 시스템이 종료되도록 시현

 

 

특정 날짜만 실행되도록 구상 중 . . . 

반응형
반응형

홈, 기타 탭 추가 개선

자동 설치가 가능한 잡동사니 추가해 봄

 

AutoInstall v2.5 기타 설치 - 움짤 GIF

 

Setting.ini Home / Other 섹션 구분

; ---------------- Home 섹션 ----------------
[Home_7-Zip]
Exe = 7z*.exe
Arg = /S
Run = 0
[Home_Bandizip]
Exe = BANDIZIP*.exe
Arg = /S /auto
Run = 1
[Home_BandiView]
Exe = BANDIVIEW*.exe
Arg = /S /auto
Run = 0
[Home_FSViewer]
Exe = FSViewer*.exe
Arg = /S
Run = 1
[Home_Everything]
Exe = Everything*.exe
Arg = /S
Run = 0
[Home_Google Chrome]
Exe = googlechrome*.msi
Arg = /qn /norestart
Run = 1
[Home_Firefox]
Exe = Firefox*.exe
Arg = /S
Run = 0
[Home_Naver Whale]
Exe = Whale*.exe
Arg = /silent
Run = 0
[Home_PotPlayer]
Exe = PotPlayer*.exe
Arg = /S
Run = 1
[Home_KakaoTalk]
Exe = KakaoTalk*.exe
Arg = /S
Run = 0
[Home_Adobe Reader]
Exe = AcroRdrDC*.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[Home_ALPDF]
Exe = ALPDF*.exe
Arg = /silent
Run = 0
[Home_Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1
[Home_HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Home_Office2016(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVolAll.xml
Run = 0
[Home_Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVol.xml
Run = 0
[Home_Office2019(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVolAll.xml
Run = 0
[Home_Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVol.xml
Run = 0
[Home_Office2021(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVolAll.xml
Run = 0
[Home_Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVol.xml
Run = 1
; ---------------- Other 섹션 ----------------
[Other_Discord]
Exe = Discord*.exe
Arg = /S
Run = 0
[Other_Steam]
Exe = Steam*.exe
Arg = /S
Run = 0
[Other_OBS-Studio]
Exe = OBS-Studio*.exe
Arg = /S
Run = 0
[Other_Shana Encoder]
Exe = ShanaEncoder*.exe
Arg = /S
Run = 0
[Other_Bandicut]
Exe = Bandicut*.exe
Arg = /S /auto
Run = 0
[Other_BDCAM]
Exe = BDCAM*.exe
Arg = /S /auto
Run = 0
[Other_GOMPLAYER]
Exe = GOMPLAYER*.exe
Arg = /S
Run = 0
[Other_VLC Media Player]
Exe = vlc*.exe
Arg = /S
Run = 0
[Other_AIMPlayer]
Exe = aimp*.exe
Arg = /AUTO /SILENT
Run = 0
[Other_PhotoScape]
Exe = PhotoScape*.exe
Arg = /S
Run = 0
[Other_ALZip]
Exe = ALZip*.exe
Arg = /silent
Run = 0
[Other_ALSee]
Exe = ALSee*.exe
Arg = /silent
Run = 0
[Other_ALCapture]
Exe = ALCapture*.exe
Arg = /silent
Run = 0
[Other_ALSong]
Exe = ALSong*.exe
Arg = /silent
Run = 0
[Other_ALYac]
Exe = ALYac*.exe
Arg = /silent
Run = 0
[Other_Goclean]
Exe = gocleans*.exe
Arg = /S
Run = 0
[Other_DaVu Indy]
Exe = DaVuInd*.exe
Arg = /SILENT /NORESTART
Run = 0

 

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형
반응형

1. 파일은 ISO 파일 형태로 제작 되었습니다.
└▶ 바이러스 오진으로 인한 파일 삭제 방지 목적
└▶ ISO 파일 탑재 후 자동 실행 혹은, AutoInstall.cmd으로 실행
└▶ AutoInstall.cmd 실행 시 디펜더 실행 여부를 판단하고 제외 목록을 자동으로 추가합니다.
└▶ 디펜더 미 실행 시 스킵 후 AutoInstall.exe가 실행 됩니다.

2. AutoInstall.exe를 실행하면 실행 경로에서 Setting.ini을 찾고 없으면 기본 프리셋을 생성합니다.
└▶ ISO 파일에는 기본 Setting.ini 파일이 포함되어 있습니다.
└▶ Setting.ini이 있으면 기존 파일을 로드하여 사용합니다.

3. Setting.ini 파일에 아래와 같은 프리셋이 20세트가 추가 되어 있습니다.
└▶ 순서대로 10세트를 출력하고 초과하는 경우 다음 열에 출력합니다.
└▶ 버전업에 따른 파일 교체 시 이름 변경 없이 설치 파일을 교체하여 추가하면 됩니다.

[7-Zip] 			프로그램 이름
Exe = 7z*.exe 		설치할 파일명(일정 패턴, 와일드카드 형식으로 사용 가능)
Arg = /S 			자동 설치 옵션
Run = 0 			기본 선택 유1, 무0


4. Setting.ini 파일을 수정 하여 출력되는 프로그램 순서를 변경하거나 새로 구성하여 설치에 활용할 수 있습니다.

5. 설치할 프로그램 체크박스를 선택하고 설치 시작 버튼을 누르면 왼쪽 상단부터 차례대로 설치됩니다.
└▶ 설치 시작 후 설치가 완료된 항목은 회색으로 비활성화 표시 됩니다.

└▶ 설치 진행 상황은 아래 프로그레스바에 표시됩니다.
└▶ 바로가기 생성 버튼으로 미생성 카카오톡, 오피스 바로가기를 공용 바탕화면에 생성할 수 있습니다.

 

AutoInstall v2.0 소프트웨어 자동 설치 샘플

[ WIN10 기본 선택 설치 ] AutoInstall v2.0 설치 WIN10 - 움짤 GIF

[ WIN10 전체 선택 설치 ] AutoInstall v2.0 설치 WIN10 - 움짤 GIF

[ WIN11 기본 선택 설치 ] AutoInstall v2.0 설치 WIN11 - 움짤 GIF

[ WIN11 전체 선택 설치 ] AutoInstall v2.0 설치 WIN11 - 움짤 GIF

추가적으로 아크로뱃 설치 옵션이 변경 되었습니다.

[Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1

 

Setting.ini

Setting.ini

[7-Zip]
Exe = 7z*.exe
Arg = /S
Run = 0
[Bandizip]
Exe = BANDIZIP*.exe
Arg = /S /auto
Run = 1
[BandiView]
Exe = BANDIVIEW*.exe
Arg = /S /auto
Run = 0
[FSViewer]
Exe = FSViewer*.exe
Arg = /S
Run = 1
[Everything]
Exe = Everything*.exe
Arg = /S
Run = 0
[Google Chrome]
Exe = googlechrome*.msi
Arg = /qn /norestart
Run = 1
[Firefox]
Exe = Firefox*.exe
Arg = /S
Run = 0
[Naver Whale]
Exe = Whale*.exe
Arg = /silent
Run = 0
[PotPlayer]
Exe = PotPlayer*.exe
Arg = /S
Run = 1
[KakaoTalk]
Exe = KakaoTalk*.exe
Arg = /S
Run = 0
[Adobe Reader]
Exe = AcroRdrDC*.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[ALPDF]
Exe = ALPDF*.exe
Arg = /silent
Run = 0
[Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1
[HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Office2016(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVolAll.xml
Run = 0
[Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVol.xml
Run = 0
[Office2019(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVolAll.xml
Run = 0
[Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVol.xml
Run = 0
[Office2021(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVolAll.xml
Run = 0
[Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVol.xml
Run = 1

 

ISO 파일, 폴더 트리 구조

ISO 파일, 폴더 트리 구조

AutoInstall v2.0 볼륨에 대한 폴더 경로의 목록입니다.
볼륨 일련 번호는 B551-1883입니다.
J:.
│  7z2408-x64.exe
│  ALPDF401.exe
│  AUTORUN.INF
│  AcroRdrDC2400320112_ko_KR.exe
│  AutoInstall.cmd
│  AutoInstall.exe
│  BANDIVIEW-SETUP-X64.EXE
│  BANDIZIP-SETUP-STD-X64.EXE
│  Everything-1.4.1.1026.x64-Setup.exe
│  FSViewerSetup79.exe
│  Firefox Setup 132.0.2.exe
│  KakaoTalk_Setup.exe
│  Packege.ico
│  PotPlayerSetup.exe
│  Setting.ini
│  WhaleSetupX64.exe
│  googlechromestandaloneenterprise64.msi
│  
├─AcrobatPro
│  │  ABCPY.INI
│  │  AcroPro.msi
│  │  AcrobatHelper.exe
│  │  AlfSdPack.cab
│  │  Core.cab
│  │  Extras.cab
│  │  Intermediate.cab
│  │  Languages.cab
│  │  Optional.cab
│  │  Patch.msp
│  │  WindowsInstaller-KB893803-v2-x86.exe
│  │  patch.cmd
│  │  setup.exe
│  │  setup.ini
│  │  
│  ├─Transforms
│  └─VCRT_x64
│          
├─HancomESD2022
│  │  HOffice120.msi
│  │  HOffice2022Update_20240624.exe
│  │  InstallerConfig.ini
│  │  MicrosoftRootCertificateAuthority2010.cer
│  │  MicrosoftRootCertificateAuthority2011.cer
│  │  Setup.exe
│  │  VC_redist.x86.exe
│  │  cab1.cab
│  │  cab10.cab
│  │  cab11.cab
│  │  cab2.cab
│  │  cab3.cab
│  │  cab4.cab
│  │  cab5.cab
│  │  cab6.cab
│  │  cab7.cab
│  │  cab8.cab
│  │  cab9.cab
│  │  ndp48-x86-x64-allos-enu.exe
│  │  vcredist_x86.exe
│  │  
│  └─Install_UI
│              
└─Office2021
    │  2016ProPlusVol.xml
    │  2016ProPlusVolAll.xml
    │  2019ProPlusVol.xml
    │  2019ProPlusVolAll.xml
    │  2021ProPlusVol.xml
    │  2021ProPlusVolAll.xml
    │  2024ProPlusVol.xml
    │  KMS_VL_ALL_AIO.cmd
    │  OInstallLite x64.exe
    │  autorun.inf
    │  
    ├─Office
    │              
    └─files

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형
반응형

AutoInstall v1.0 소프트웨어 자동 설치 샘플

 

AutoInstall v1.0 설치 WIN10 - 움짤 GIF

 

AutoInstall v1.0 설치 WIN11 - 움짤 GIF

Setting.ini

[7-Zip]
Exe = 7z2408-x64.exe
Arg = /S
Run = 0
[Bandizip]
Exe = BANDIZIP-SETUP-STD-X64.exe
Arg = /S /auto
Run = 1
[BandiView]
Exe = BANDIVIEW-SETUP-X64.exe
Arg = /S /auto
Run = 0
[FSViewer]
Exe = FSViewerSetup79.exe
Arg = /S
Run = 1
[Everything]
Exe = Everything-1.4.1.1026.x64-Setup.exe
Arg = /S
Run = 0
[Google Chrome]
Exe = googlechromestandaloneenterprise64.msi
Arg = /qn /norestart
Run = 1
[Firefox]
Exe = Firefox Setup 132.0.2.exe
Arg = /S
Run = 0
[PotPlayer]
Exe = PotPlayerSetup.exe
Arg = /S
Run = 1
[KMPlayer]
Exe = KMPlayer_4.2.3.19.exe
Arg = /S
Run = 0
[KakaoTalk]
Exe = KakaoTalk_Setup.exe
Arg = /S
Run = 0
[Adobe Reader]
Exe = AcroRdrDC2400320112_ko_KR.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[ALPDF]
Exe = ALPDF40.exe
Arg = /silent
Run = 0
[Acrobat Pro]
Exe = AcrobatPro\AcrobatHelper.exe
Arg = /S
Run = 1
[HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Office2016(All)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2016ProPlusVolAll.xml
Run = 0
[Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2016ProPlusVol.xml
Run = 0
[Office2019(All)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2019ProPlusVolAll.xml
Run = 0
[Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2019ProPlusVol.xml
Run = 0
[Office2021(All)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2021ProPlusVolAll.xml
Run = 0
[Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstallLite x64.exe
Arg = /configure 2021ProPlusVol.xml
Run = 1

 

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형

+ Recent posts