Search found 318 matches

by sekou2331
Wed Jul 01, 2020 3:49 pm
Forum: PowerShell
Topic: .net remote install
Replies: 12
Views: 5798

.net remote install

This may have been answered already but cant seem to find on this forum. I am trying to install .net 4.8 to remote machines. I am using the below but it seems like it is not working. The funny thing I am not getting error at all it is just not working. I have used this command for other process runs...
by sekou2331
Wed May 20, 2020 8:16 am
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

Re: XML Merge

Ok dont know how else to explain it or show it to you. But thank you for your advice on the iteration. Think I have an idea of how I am going to do this. Will post this my results. Thank you for the help.
by sekou2331
Wed May 20, 2020 7:39 am
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

Re: XML Merge

I added the files and what I want them to look like just a small example below. I just want to add anything that is new in the new file and merge it with the old file. But i want o also check the inner text. The Get-ChildNodes function gets the elements. But it looks like you are saying i need to it...
by sekou2331
Wed May 20, 2020 6:16 am
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

Re: XML Merge

Below is an example of what both XML files will look like. <?xml version="1.0" encoding="utf-8"?> <Settings> <Elements1>Text</Elements1> <Elements2>Text</Elements2> <Elements3>Text</Elements3> <Elements4>Text</Elements4> <Elements5>Text</Elements5> <Elements6>Text</Elements6> <El...
by sekou2331
Wed May 20, 2020 5:42 am
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

Re: XML Merge

In my script given I am getting the elements that are in both files and checking if they are the same then I will check the inner text. I have a function calling function because each function is responsible for one thing. As for the merge I am not to clear on your question but I just need to i gues...
by sekou2331
Tue May 19, 2020 10:32 pm
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

Re: XML Merge

So what I am doing right now taking old.xml and comparing it to new.xml 1. Whatever XML Elements that are the same between the two files keep 2. If not the same XML Elements with the same text content only keep the XML Elements with the text content that are in old.xml 3. Lastly Any new XML Elements...
by sekou2331
Tue May 19, 2020 9:25 pm
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5825

XML Merge

I am trying to merge two xml's. I wanted to know the best way to do this. I want to overwrite anything that is the same from one file to the other. Does Powershell have any Tool or module that does this?
by sekou2331
Wed Jan 29, 2020 7:14 am
Forum: PowerShell
Topic: Open LDAP
Replies: 7
Views: 5022

Re: Open LDAP

Ok I think I figured out why I was not connecting. It looks like I needed some type of authentication binding. I wrote it still using C# methods. Is there are more PowerShell way for the below. Also how can I see the data under properties. I am only seeing this {adspath, companyname, mscrmid, cn...}...
by sekou2331
Tue Jan 28, 2020 1:34 pm
Forum: PowerShell
Topic: Open LDAP
Replies: 7
Views: 5022

Re: Open LDAP

Still getting the same error. The login works in C# but will not work in powershell. Really weird. ERROR: Exception calling "FindAll" with "0" argument(s): "The user name or password is incorrect. ERROR: " LDAP_QUery.ps1 (7, 1): ERROR: At Line: 7 char: 1 ERROR: + $searc...
by sekou2331
Tue Jan 28, 2020 11:29 am
Forum: PowerShell
Topic: Open LDAP
Replies: 7
Views: 5022

Re: Open LDAP

No