17,705 questions
0
votes
0
answers
12
views
Using GT Automation / Scripting API in GT-SUITE 2016 (GT-ISE) for CFD Coupling Cases
I’m working with GT-SUITE 2016 (GT-ISE) and want to automate creating and running CFD-coupled simulations using the GT Automation / Scripting API.
The official docs mainly cover manual setup for ...
2
votes
1
answer
63
views
Azure DevOps “File Path” PowerShell task fails with “MissingEndCurlyBrace” but script parses and runs fine locally and as inline steps
Environment
Azure DevOps Classic UI
Task: PowerShell@2 (Windows PowerShell, not pwsh)
Agent: Windows (Microsoft-hosted and self-hosted both repro)
PowerShell version: Windows PowerShell 5.1
Script ...
-2
votes
1
answer
107
views
Bash Hackerrank Challenge solution is working on bash version 3.2 on computer but not on Hackerrank Bash IDE [closed]
Attempting to solve the "Lonely Integer" problem
HackerRank problem statement:
My solution
declare -i n
read n
declare -a numbers
read numbers
n=${#numbers[@]}-1
while [ $n -ge 0 ]; do echo ...
0
votes
0
answers
51
views
GeoGebra Classic 5 — Can I save and run a batch of Input Bar commands from a plain text file?
I remember (from around 10 years ago) that in GeoGebra I could save the commands I would normally type into the Input Bar into a textual file, and then open/load/run them all at once, without having ...
0
votes
0
answers
59
views
Office script in Excel can't be saved to workbook
I have written a script that works as expected with a specific workbook and I now want to save it to that workbook and ideally would like to make a button to run the script. However I do not get the ...
0
votes
0
answers
44
views
How can I get more helpful syntax error messages in a Groovy 4.0.9 Script with embedded methods?
I have embedded Groovy 4.0.9 in my application as a scripting language, and I want to be able to provide helpful feedback to my users when their scripts don't compile. This works ok with a basic ...
2
votes
0
answers
68
views
How to specify target framework for Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript?
The problem
I am implementing an out-of-process C# REPL for a Unity game. I tried an in-process REPL at first, but couldn't get it to work because of some weird VTable related exceptions when loading ...
1
vote
1
answer
37
views
Does Android Support Runtime XML or HTML Parsing for Dynamic View Creation?
I'm working on a native Android application where screens need to be rendered dynamically based on data received at runtime. The application is database-driven, and we aim to support customization for ...
0
votes
0
answers
47
views
Powershell - Can´t find any way of passing a valid string to firewall rule creation cmdlet [duplicate]
$user = [System.Security.Principal.WindowsIdentity]::GetCurrent()
$userSID = $user.User.Value
$user2 = "$env:COMPUTERNAME\$env:USERNAME"
New-NetFirewallRule -DisplayName "aaa_test"...
0
votes
1
answer
43
views
awk -F command is not found (ubuntu) [closed]
I am using the command in following types:
Commands are:
ps -ef | awf-F "" '{print $2}'
ps -ef | grep python3 | awk-F "" '{print $3}'
Both the commands give the error:
awk -F ...
2
votes
1
answer
78
views
Having some trouble trying to verify credentials from get-credentials. Is there a better way?
I thought my script worked in test environment (it prompted me for credentials again and again when I mistyped, but accepted them after I typed them correctly). But when I tried to use it in ...
0
votes
1
answer
41
views
bulk update in Visual Studio, is this possible?
I have a task to replace several tags in big project (2000+ xml pieces of code), basically changing:
<tag1>abc</tag1> ==> <tag1>XYX99</tag1>
Is this can be done inside of ...
2
votes
1
answer
49
views
I have input validation and now im trying to continue the code // Powershell
I am following a tutorial I found on youtube for a file integrity monitor. The code is messy but im trying to add my own twist and clean it up. I just added input validation and now the code won't run ...
1
vote
1
answer
72
views
Powershell path exists but script cannot find it
I am trying to use a PowerShell script to transfer a file from a NAS location to a group of remote servers. I am using Copy-Item to transfer the file. I am getting the error - Cannot find path because ...
2
votes
1
answer
150
views
LastLoginTime not present in Windows 11. Is there another way to pull last login for local accounts without using Event Logs?
I am working to write some simple powershell scripts to verify account status and inactivity. I am running into an issue where the Inactivity is not returned due to a non-existent registry key. Is ...
0
votes
1
answer
110
views
Sabre Scribe Scripts
Wondering if anyone has the setup instructions for the Eclipse to work with Sabre Scripts? The one I have is outdated. Or in general the steps to setup eclipse to work with Sabre Red Apps
0
votes
0
answers
30
views
ARCore Depth Lab Point Cloud Export Creates Multiple Layers in .PLY File
I have built the ARCore Depth Lab application from Google’s GitHub repository in Unity. The application runs fine, and I have added a new feature to export the point cloud data to a .ply file.
I ...
0
votes
0
answers
206
views
Via powershell, trying to delete a folder in C:\users but it isn’t working [duplicate]
I run powershell as an admin. I am able to delete the user account without issue via:
Remove-LocalUser -Name "PcMethod"
But then when I try to remove PcMethod’s folder in C:\users via:
if (...
0
votes
0
answers
49
views
Blender: Report message from previous run persists in successive run of the same operator
Summary
When an operator is run multiple times successively in blender, report messages (generated by report() API) from previous runs are also showing up in present run.
What is the reason behind it ...
3
votes
0
answers
270
views
SAP GUI Scripting in Delphi
I am developing an application in Delphi that needs to interact with SAP GUI via Scripting to automate some material control operations. However, I am facing difficulties in establishing the correct ...
-1
votes
3
answers
152
views
Cannot get a surface gui textbox's text, even though it is in a localscript
(would post on dev forum but I'm not accepted in yet) I have put a part in workspace with a surface GUI then textbox and then this LOCAL script inside it:
script.Parent:GetPropertyChangedSignal("...
0
votes
0
answers
83
views
No events firing in my ASP.NET Core 9.0 Blazor web app
I am simply trying to get a FluentButton OnClick event to fire and have no luck. Nothing. Any events are not firing. There are errors I've never seen in the browser that concern me. I'm hoping someone ...
0
votes
1
answer
51
views
How to remove all FlagSmith identities at once
When using the FlagSmith User Interface, I couldn't find any way to select all the identities and delete them at once.
As you can see in the image attached, we are forced to click the trash icon ...
0
votes
1
answer
216
views
How can I run a Powershell script from a shortcut on macOS and have it display the text output from the script
I have a powershell script that I'm trying to run from a shortcut on macOS (as in the Shortcuts app/widget, not the Dock). I have the mac version of powershell installed and the script runs fine if I ...
-1
votes
1
answer
265
views
How to Fix 'No Applications Connected' Error in UXP Developer Tools for Adobe Apps?
In Uxp Developer Tools, you can connect to Photoshop, but cannot connect to Premiere Pro 2025 and Illustrator 2025. Uxp Developer Tools prompts 'No applications are connected to the service. Make sure ...