Integrated: 8355249: Remove the use of WMIC from the entire source code

2025-05-06 Thread Daishi Tabata
On Tue, 22 Apr 2025 07:29:08 GMT, Daishi Tabata wrote: > After searching the entire JDK source code, I found that WMIC is only used in > four files. These WMIC calls can be replaced with PowerShell for WMI. > > The primary challenge in this replacement is to make it work the same

Re: RFR: 8355249: Remove the use of WMIC from the entire source code [v2]

2025-05-06 Thread Daishi Tabata
On Tue, 22 Apr 2025 07:41:43 GMT, Daishi Tabata wrote: >> After searching the entire JDK source code, I found that WMIC is only used >> in four files. These WMIC calls can be replaced with PowerShell for WMI. >> >> The primary challenge in this replacement is to

Re: RFR: 8355249: Remove the use of WMIC from the entire source code [v2]

2025-04-22 Thread Daishi Tabata
section > > **Testing:** > I have confirmed that all tests in `jdk/tools/jpackage` pass after these > changes. Daishi Tabata has updated the pull request incrementally with one additional commit since the last revision: run jcheck - Changes: - all: https://git.o

RFR: 8355249: Remove the use of WMIC from the entire source code

2025-04-22 Thread Daishi Tabata
After searching the entire JDK source code, I found that WMIC is only used in four files. These WMIC calls can be replaced with PowerShell for WMI. The primary challenge in this replacement is to make it work the same as before, even if the output format of the PowerShell command is different fr