pandaworld78
Goto Top

Batch with PowerShell

Hallo,

evtl. kann mir hier bei meinem Problem jemand helfen ?

Es geht darum, die Variable (Variable_1) von PowerShell innerhalb einer Batch in die eigentliche Batch zu übernehmen / übertragen.

Hier mein Code:


<# : Beginn_Batch_with_PowerShell
::
   @ECHO OFF
::
:: Datei: batch_with_powershell.bat
::
::==============================================================================================================
:: Shell
::==============================================================================================================
::
   title Batch_with_PowerShell

   setLocal EnableExtensions EnableDelayedExpansion
::
   powershell -executionpolicy remotesigned -Command "Invoke-Expression $([System.IO.File]::ReadAllText('%~f0'))"  
   echo Shell          : %Variable_1% ( Hier soll die Variable '$Variable_1' von PowerShell angezeigt werden )  
   echo hier_1 && pause && exit
::
#>

# ==============================================================================================================
#  PowerShell
# ==============================================================================================================
#
   $Variable_1 = "test"  
#
   Write-Host "PowerShell     : " -foreground "White" -nonewline; Write-Host "$Variable_1" -foreground "DarkCyan"  
# ==============================================================================================================


. . . und ja, es hat Gründe, weshalb ich die Batch dazu brauche.

Content-ID: 563115

Url: https://administrator.de/forum/batch-with-powershell-563115.html

Ausgedruckt am: 05.04.2025 um 20:04 Uhr

aqui
aqui 04.04.2020 aktualisiert um 09:55:55 Uhr
Goto Top
Bitte dringend Code Tags benutzen !! Formatierungen in den Beiträgen
Dann kann man auch verständlich lesen um was es geht !!
Und ja... es hat Gründe FAQs mal zu lesen ! Das hilft wirklich !
143728
143728 04.04.2020 aktualisiert um 10:26:27 Uhr
Goto Top
Die Variable mit einer For-Schleife capturen, wie halt immer im Batch-Sandkasten ...
<# : Beginn_Batch_with_PowerShell
::
   @ECHO OFF
::
:: Datei: batch_with_powershell.bat
::
::==============================================================================================================
:: Shell
::==============================================================================================================
::
   title Batch_with_PowerShell

   setLocal EnableExtensions EnableDelayedExpansion
::
   for /f "delims=" %%a in ('powershell -executionpolicy remotesigned -Command "iex ([System.IO.File]::ReadAllText('%~f0'))"') do set "Variable_1=%%a"  
   echo Shell          : %Variable_1%
   pause && exit
::
#>

# ==============================================================================================================
#  PowerShell
# ==============================================================================================================
#
	$Variable_1 = "Test"  
	return $Variable_1
# ==============================================================================================================
pandaworld78
pandaworld78 04.04.2020 um 10:47:54 Uhr
Goto Top
Na klar, Perfekt ! - Vielen Dank.

Manchmal sieht man den Wald vor lauter Bäumen nicht.