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?

PowerShellでSQL DeveloperをWindowsに自動インストール

Last updated at Posted at 2025-01-08

本ブログは、オラクル・クラウドの個人ブログ一覧の1つです。

初めに
このブログは、PowerShellスクリプトを利用してSQL Developerを自動インストールしたい方を対象としています。cloud-initスクリプトに追加することで、クラウド VM の作成時に自動的にインストールを実行できるようになります。

環境情報
Windows Server 2019 Standard Edition (OCI VM)
SQL Devloper 24.3 (Windows 64-bit with JDK 17 included)

ステップ

  • インストーラのダウンロード (リンク)
  • インストーラの解凍
  • インストーラの削除(オプション)
# Define the URL of the SQL Developer installer
$InstallerFile = "sqldeveloper-24.3.1.347.1826-x64.zip"
$InstallerUrl =  "https://download.oracle.com/otn_software/java/sqldeveloper/" + $InstallerFile

# Define the path where you want to save the installer
$InstallerPath = Join-Path $env:TEMP $InstallerFile

# Download the installer
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri $InstallerUrl -OutFile $InstallerPath

# Unzip the installer
Expand-Archive -Path $InstallerPath -DestinationPath "C:\"

# Clean up the installer after installation
Remove-Item $InstallerPath

※、OCI cloud-initスクリプトで使用する場合は、最初に次の行を追加する必要があります。
#ps1_sysnative


関連記事
SQL Developerで様々なDBに接続する方法
Oracle LinuxでSQL Developerを利用する方法

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?