Search found 10 matches

by galaara98
Tue Nov 08, 2016 10:58 am
Forum: Former and Future Customers - Questions
Topic: Powershell Studio 2016 import psdlg from Primal Script 2015
Replies: 1
Views: 6425

Powershell Studio 2016 import psdlg from Primal Script 2015

I have a trial license of Primal Script 2015 and a trial license for PowerShell Studio 2016, so i guess i cannot ask questions in those forums because i'm not official registered? anyway, i have tested some features of Primal Script and have created a dialog file with a .psdlg extension. I would lik...
by galaara98
Fri May 10, 2013 4:21 pm
Forum: PowerShell
Topic: Powershell Studio - Check Registry - Windows 8 Issue
Replies: 18
Views: 13832

Re: Powershell Studio - Check Registry - Windows 8 Issue

if he has used a 32 bit binary to set the data, it would have in fact set HKLM/Software/Wow6432Node/Test You can validate this by running 32 bit regedit (C:\windows\sysWOW64\regedit.exe) which cannot see the 64bit registry tree. Then create a value at HKLM/Software/Test Now open 64bit regedit (C:\wi...
by galaara98
Fri May 10, 2013 4:06 pm
Forum: Other Scripting Languages
Topic: Netsh winhttp HTA??
Replies: 3
Views: 66490

Re: Netsh winhttp HTA??

Is your Proxy needed to reach internal http resources. Basically can you have your end users come to a webpage that helps them, instead of your Support staff instigating the change. the simplest solution is a web page that says Start -> Run -> paste this text -> click Ok The other thing you can do i...
by galaara98
Fri May 10, 2013 3:44 pm
Forum: PowerShell
Topic: Syntax verification
Replies: 9
Views: 8047

Re: Syntax verification

I do uses some drugs because without it my ADD is so rampant even I personally cannot follow my own train of thought. But my Doc and I have set the dosage to be quite mild. In most cases I benefit from my thoughts constantly jumping to related topics. I am able to troubleshoot extremely rapidly beca...
by galaara98
Fri May 10, 2013 3:19 pm
Forum: PowerShell
Topic: Powershell Studio - Check Registry - Windows 8 Issue
Replies: 18
Views: 13832

Re: Powershell Studio - Check Registry - Windows 8 Issue

I just simulated your issue and I cannot recreate it. On Windows 8 Ent Edition, 64bit Using Explorer (WINDOWSKEY-R -> regedit [ENTER]) I launched a 64bit registry editing tool Using Regedit > I created a registry key HKLM/Software/Test > I created a String Value > with the name of:Test > and Data of...
by galaara98
Fri May 10, 2013 2:51 pm
Forum: PowerShell
Topic: Syntax verification
Replies: 9
Views: 8047

Re: Syntax verification

ADD = Attention Deficit Disorder :) My brain wanders even as I think. it can be very handy when troubleshooting or designing a solution. Is sort of a downer when trying to communicate complex issues because my thoughts branch faster than I can type.

Aaron
by galaara98
Fri May 10, 2013 7:47 am
Forum: PowerShell
Topic: Syntax verification
Replies: 9
Views: 8047

Re: Syntax verification

My thought process was based on the original post wondering whether to create a function to do something that can also be done on the fly. My wandering expressions of solutions and philosophy are do to my ADD :) however the point was: EITHER of the original styles would work...however I personally n...
by galaara98
Thu May 09, 2013 6:24 pm
Forum: PowerShell
Topic: PowerShell; Date event triggers; File management
Replies: 8
Views: 14501

Re: PowerShell; Date event triggers; File management

is this a school project... ;)
your code plan is very well defined, but you have no code... almost seems like you are asking someone to write a script to execute your plan?
by galaara98
Thu May 09, 2013 6:18 pm
Forum: PowerShell
Topic: Syntax verification
Replies: 9
Views: 8047

Re: Syntax verification

I tend to create variables and 'throw-away' functions only while debugging or teaching. In a known working production script I tend to inline, pipeline, and every other trick I can use to not create variables... In my opinion it seems to lower the amount of RAM a script needs if you minimize storing...
by galaara98
Thu May 09, 2013 6:01 pm
Forum: PowerShell
Topic: VMWare report
Replies: 4
Views: 7832

Re: VMWare report

$OUTPUT_FILE = ($Env:USERPROFILE + '\Desktop\MigReport.txt') Clear-Host #If function was using parameters set the defaults there, here we are going to set to "" # later if -eq "" we will read-host $VC = "" #feel free to set this if its very common, again id create param...