0
1

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 3 years have passed since last update.

CATIAの起動時間を短縮できる環境変数

Last updated at Posted at 2017-06-01

前提条件

  • OS : Windows 7 以降
  • CATIA : R2013 以降

概要

以下のそれぞれの環境変数を使用すれば、CATIAの起動が多少は速くなる

説明 変数名
スプラッシュスクリーン CNextSplashScreen No
ウィンドウの背景画像 CNextBackGround No
起動時の新規ドキュメント CATNoStartDocument Yes

スプラッシュスクリーン

CATIA起動時に出るCATIAのロゴを非表示にする

ウィンドウの背景画像

CATIAウィンドウの背景画像(宇宙の絵)を非表示にする

起動時の新規ドキュメント

CATIA起動時に新規ドキュメントが作成される機能を無効化する

参考:CATIAの起動を速くする--PLM Tips Magazine

コマンドを使用して設定する

cmd の場合

SetX /M CNextSplashScreen No
SetX /M CNextBackGround No
SetX /M CATNoStartDocument Yes

powershell の場合

Set-Item Env:CNextSplashScreen No
Set-Item Env:CNextBackGround No
Set-Item Env:CATNoStartDocument Yes

コマンドを使用せず手動で設定する

  • Windows7 で CNextSplashScreen の場合
    1. [マイコンピュータ]を右クリック
    2. "プロパティ"をクリック
    3. [詳細設定]タブをクリック
    4. "環境変数"をクリック
    5. [システム環境変数]側の[新規]をクリック
    6. "変数名"に CNextSplashScreen と入力
    7. "変数値"に No と入力
    8. [OK]をクリック

参考

Excelsior!

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?