0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pyinstallerで作ったexeをタイムスケジュールで実行する際のエラーの対処方法

Posted at

概要

タスクスケジューラでpyinstallerでexe化した実行ファイルを実行させようとすると。"Failed to execute script"と出る問題

image.png

試したこと

  1. exeを指定ー>上記のエラー
  2. cmd経由の実行ー>不可能

解決法

バッチファイルを作り、バッチファイルを実行させる

exeのあるファイル内に次のようなバッシュファイルを入れます

test.bat
@echo off
cd "C:\Users\name\Documents\Python Scripts\Oyasumi\dist"
start test1.exe

cdはexeのある作業フォルダへの移動
startで実行です
7.png
プログラムスクリプトにはバッシュファイルを指定します。

私の場合はこれで解決しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?