相关文章推荐
爽快的包子  ·  JavaScript 应用的流水线 - ...·  2 月前    · 
考研的海豚  ·  Ubuntu平台下源码编译Ambari ...·  1 年前    · 
至今单身的伤痕  ·  DSN-DDI:双视图表征学习实现药物间相互 ...·  2 年前    · 
坚韧的板栗  ·  .NET 6 ...·  2 年前    · 
飘逸的口罩  ·  语义学和语用学有何区别·  2 年前    · 
痴情的帽子  ·  NLP以后还要研究些什么?_AI让世界更懂你 ...·  2 年前    · 
Code  ›  Solved: LIVEcommunity - Powershell Script and XDR - LIVEcommunity - 529931
脚本
https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/powershell-script-and-xdr/td-p/529931
聪明伶俐的脸盆
10 月前
Prisma Access Insights Discussions
Prisma Access for MSPs and Distributed Enterprises Discussions
Prisma Access Cloud Management Discussions
Prisma SD-WAN Discussions
Prisma SD-WAN CloudBlades Discussions
Prisma SD-WAN AIOps Discussions
Autonomous DEM Discussions

There is a PowerShell script that we would like to use within XDR. I understand that XDR currently is not able to run PowerShell scripts, the problem is I am not a coder. I have been trying to learn how to convert our script to Python but I am just about to give up.

In my research, I found some posts from users on various websites explaining that it is possible to run a PowerShell script with Python and I wondered if this could be a workaround?

import subprocess, sys
p = subprocess.Popen(["powershell.exe", 
              "C:\\Scripts\\PS-ScriptWeNeed.ps1"], 
              stdout=sys.stdout)
p.communicate()

The problem I see is that the assumption is you are running this script from your own host and directing Python to the path where the PowerShell script is located on your host, therefore, this is not possible unless all host already have this file located in the same file path on each host. If that is the case, any other work arounds?

If none of the above work, any chance anyone here could recommend a good resource that could help me with converting this script from PowerShell to Python?

@bbarmanroy sorry for the delayed response, drowning in work haha. Thank you for that suggestion! I was actually working on trying to get that done but just was not able to. I keep getting errors regarding the syntax somewhere in the script and just could not figure it out and finally gave up.

Decided it was better to just recreate the script in Python, so just bit the bullet and pulled an all-nighter trying to figure out how to get that done and it finally worked. Great learning experience but it did reinforce my original belief that coding is not for me lol.

Thank you again for trying to help!

@bbarmanroy sorry for the delayed response, drowning in work haha. Thank you for that suggestion! I was actually working on trying to get that done but just was not able to. I keep getting errors regarding the syntax somewhere in the script and just could not figure it out and finally gave up.

Decided it was better to just recreate the script in Python, so just bit the bullet and pulled an all-nighter trying to figure out how to get that done and it finally worked. Great learning experience but it did reinforce my original belief that coding is not for me lol.

Thank you again for trying to help!

import subprocess; process=subprocess.Popen(["powershell","& {" + pscommand + "}"],stdout=subprocess.PIPE); result=process.communicate()[0] print (result) windowsupdate()

Put all your PowerShell commands between the triple quotes in that big blank space. I haven't had issues with what PowerShell commands I can run. One thing to note is that you need to use forward slash's (/) if you're referencing a directory, otherwise XDR will have issues. Spent a few hours debugging before realizing that was the issue. Hope this helps!

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!

 
推荐文章
爽快的包子  ·  JavaScript 应用的流水线 - Azure Pipelines | Microsoft Learn
2 月前
考研的海豚  ·  Ubuntu平台下源码编译Ambari 2.4-腾讯云开发者社区-腾讯云
1 年前
至今单身的伤痕  ·  DSN-DDI:双视图表征学习实现药物间相互作用预测性能突破
2 年前
坚韧的板栗  ·  .NET 6 Hello控制台应用程序中的错误 - 问答 - 腾讯云开发者社区-腾讯云
2 年前
飘逸的口罩  ·  语义学和语用学有何区别
2 年前
痴情的帽子  ·  NLP以后还要研究些什么?_AI让世界更懂你的博客-CSDN博客
2 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号