The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,830 other subscribers

Archive for the ‘.NET’ Category

Some links on deciding if and storing your timestamps as UTC and time zone handling

Posted by jpluimers on 2017/03/08

Some links:

And a great library: nodatime/nodatime: A better date and time API for .NET

--jeroen

Posted in .NET, Development, Jon Skeet, Software Development | Leave a Comment »

Windows 10 – language neutral batch file to start Windows Update

Posted by jpluimers on 2017/02/22

A while ago, I bitched that Microsoft moved away the Windows Update out of the Control panel into a language depended place (in Windows 10 1511 update broke the Hyper-V networking – Fix network connection issues).

Since then I had to maintain too many locales running Windows 10. So here is the batch file:

for /f "delims=" %%A in ('PowerShell -Command "(Get-Culture).Name"') do explorer "%LocalAppData%\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState\Indexed\Settings\%%A\AAA_SystemSettings_MusUpdate_UpdateActionButton.settingcontent-ms"

It uses these tricks:

  1. Set output of a command as a variable (in this case a for loop variable)
  2. Execute PowerShell script in a .bat file
  3. PowerShell Get-Culture (which gets a .NET CultureInfo instance)
  4. CultureInfo.Name property (which has the nl-NL, en-US, etc codes in it)

It replaced this simple batch-file which has worked for like 10 years:

%windir%\System32\rundll32.exe url.dll,FileProtocolHandler wuapp.exe

–jeroen

via: Windows Update Shortcut – Create in Windows 10 – Windows 10 Forums

Posted in .NET, .NET 1.x, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, Batch-Files, CommandLine, Development, Power User, PowerShell, Scripting, Software Development, Windows, Windows 10 | Leave a Comment »

Delphi and stuff: The strange limitation of 64 threads

Posted by jpluimers on 2017/02/21

… there’s no need to use WaitForMultipleObjects in Step 2. It’s fairly easy to keep a counter of active threads in the pool (interlocked-incremented when a thread starts, interlocked-decremented when a thread is finished). When the counter reaches zero (no more active threads), signal an event. With only one event to wait for, you can use WaitForSingleObject

So no more 64-thread (MAXIMUM_WAIT_OBJECTS) limits for pools…

Source: Delphi and stuff: The strange limitation of 64 threads

–jeroen

Posted in .NET, Delphi, Development, Power User, Software Development, Windows | Leave a Comment »

HashLib4Pascal is a Delphi/FPC compatible library that provides an easy to use interface for computing hashes and checksums of strings (with a specified encoding), files, streams, byte arrays and untyped data to mention but a few.

Posted by jpluimers on 2017/02/15

One day I will need lots of hashing in Delphi: Xor-el/HashLib4Pascal: HashLib4Pascal is a Delphi/FPC compatible library that provides an easy to use interface for computing hashes and checksums of strings (with a specified encoding), files, streams, byte arrays and untyped data to mention but a few. [WayBack]

via: Hello all,I made a port of “HashLib” (http://hashlib.codeplex.com/) “with some fixes, additions and modifications” for Delphi (2010 ( I hope ) and above)… – Ugochukwu Mmaduekwe – Google+ [WayBack]

It’s a port of the C# HashLib – Home [WayBack]

Another fork is at https://github.com/bonesoul/HashLib

–jeroen

Posted in .NET, C#, Delphi, Delphi 10 Seattle, Delphi 10.1 Berlin (BigBen), Delphi 2010, Delphi XE, Delphi XE2, Delphi XE3, Delphi XE4, Delphi XE5, Delphi XE6, Delphi XE7, Delphi XE8, Development, Encoding, FreePascal, Pascal, Software Development | Leave a Comment »

Date format converter from Text or Unix/Mac/Filetime/Microsoft to virtually any readable form

Posted by jpluimers on 2017/02/09

Brilliant Date format converter from dates in Text (almost any format) or timestamp numbers in Unix, Mac, Filetime or Microsoft (which is the same as Delphi TDateTime) format to any of these formats:

Text Date:
Date in human-readable text
Wednesday, March 23, 2016 4:05:39pm
RFC 822:
RFC 822 formatted date
Wed, 23 Mar 2016 16:05:39 +0000
ISO 8601:
ISO 8601 formatted date
2016-03-23T16:05:39+00:00
UNIX Timestamp:
seconds since Jan 1 1970
1458749139
Mac Timestamp:
seconds since Jan 1 1904
3541593939
Microsoft Timestamp:
days since Dec 31 1899
42452.670590278
FILETIME:
100-nanoseconds since Jan 1 1601
131032227390000000
01D1851D:D7B58B80

Source: Date format converter

–jeroen

Posted in *nix, .NET, Apple, Delphi, Development, Mac, Mac OS X / OS X / MacOS, Power User, Software Development | 1 Comment »

An exponential back-off implementation I used somewhere; probably room for improvement, but it works good enough.

Posted by jpluimers on 2017/01/17

I will probably need this again somewhere in the future: An exponential back-off implementation I used somewhere; probably room for improvement, but it works good enough.

It’s Delphi, but I’ve not seen practical implementations in C# either.

(the updated version thanks to Anders Melander).

–jeroen


function TryGetLocationLockWithExponentialBackOff: Boolean;
const
cBase = 2;
cMaxWaitMilliSeconds = 1500;
var
lWaitMilliSeconds: integer;
begin
Result := True;
lWaitMilliSeconds := cBase;
while (not TryGetLocationLock) do
begin
if (lWaitMilliSeconds > cMaxWaitMilliSeconds) then
Exit(False);
Sleep(lWaitMilliSeconds);
Inc(lWaitMilliSeconds, lWaitMilliSeconds);
end;
end;


function TryGetLocationLockWithExponentialBackOff: Boolean;
const
cBase = 2;
cMaxWaitMilliSeconds = 1500;
var
lIteration: Integer;
lWaitMilliSeconds: Single;
begin
lIteration := 1;
lWaitMilliSeconds := 0;
while lWaitMilliSeconds < cMaxWaitMilliSeconds do
begin
Result := TryGetLocationLock;
if Result then
Exit;
lWaitMilliSeconds := IntPower(cBase, lIteration);
Inc(lIteration);
Sleep(Round(lWaitMilliSeconds));
end;
Result := TryGetLocationLock;
end;

Posted in .NET, C#, Delphi, Development, Software Development | 5 Comments »

Visual Studio: In TFS how can I correct the links to work items on an existing changeset – Stack Overflow

Posted by jpluimers on 2017/01/17

This is still one of my gripes from Visual Studio: when a changeset is linked to an incorrect work item, you still have to change this from the work item side:

You cannot change it from the changeset UI, but you can change it from most work item UI’s. You can just add a link to a the specific changeset and the changeset will show the link as well.

You have to be careful with the steps too:

  1. Link it from the correct work item as a changeset link
  2. Unlink it from the wrong work item

If you do it in reverse order, and get the changeset number wrong, you will have an orphan changeset.

–jeroen

Source: visual studio 2010 – In TFS how can I correct the links to work items on an existing changeset – Stack Overflow

Posted in Development, Software Development, Source Code Management, TFS (Team Foundation System), Visual Studio 2010, Visual Studio 2012, Visual Studio 2013, Visual Studio 2015, Visual Studio and tools | Leave a Comment »

The curse of vulnerable OpenSSL DLLs

Posted by jpluimers on 2016/12/30

When you ship OpenSSL DLLs, you should provide an update mechanism outside of your regular product cycle that updates these shortly after vulnerabilities are fixed.

Few if any products do that. So I made an overview from products and OpenSSL DLL versions I had installed on various systems.

I’m a developer, so the list is biased towards tools I use often.

All of them are vulnerable: [WayBackhttps://www.openssl.org/news/vulnerabilities.html

  • 1.0.2.h by ContinuaCI 1.8.1.185 PostgreSQL and Avast 12.3
  • 1.0.2.g by SourceTree 1.9.x embedded git_local
  • 1.0.2d by Git for Windows 2.6.1
  • 1.0.2a by SQLite browser 3.7.0
  • 1.0.1m by Delphi 10.0 Seattle
  • 1.0.1l by Ruby 2.3
  • 1.0.1f by SlikSvn 1.8.5
  • 1.0.1g by Delphi XE8, Delphi XE7, VMware Workstation OVF tool and Adobe Creative Cloud 2.8.1
  • 1.0.0g by Delphi XE6, Delphi XE5, Delphi XE4, Delphi XE3, Appmethod 1.13 and CollabNet SVN Client 1.7.5
  • 1.00d by MarkdownPad 2
  • 1.0.0 by FinalBuider 7 XE2 and FinalBuilder 7 EE
  • 0.9.8za by VMware Remote Console Plug-in 5.1 and VMware Virtual Infrastructure Client 5.1
  • 0.9.8y by VMware VIX Workstation 10
  • 0.9.8t by Veaam Backup and Replication
  • 0.9.8r by ContinuaCI 1.8.1.185 hg support, VMware VIX and VMware Workstation 8.0.2
  • 0.9.8q by Veeam Backup Transport, Veaam Backup, xampp 1.7.4 and Replication and VMware Virtual Infrastructure Client 5.0
  • 0.9.8o by xampp 1.7.4
  • 0.9.8l by xampp 1.7.4
  • 0.9.8n by Delphi XE2, Delphi XE and VMware VIX Workstation 7.1.0
  • 0.9.8m by VMware VMRC Plug-in, VMware VIX and VMware Workstation 8.0.2
  • 0.9.8i by VMware Virtual Infrastructure Client 4.1
  • 0.9.8d by Database Workbench Pro 4.4.3, Database Workbench Pro 5.2.4 and VMware vSphere CLI Perl
  • 0.9.8b by Adobe Creative Suite 5
  • 0.9.7m by VMware VIX server 1.0.9
  • 0.9.7l by VMware VIX VIServer 2
  • N/A by Adobe Create Suite 5 and VMware VIX server 1

–jeroen

via: [WayBackDoes Delphi installer install OpenSSL dll’s?

PS: Below some Software Archeology related links in the comments.

Posted in .NET, CollabNet, Delphi, Development, DVCS - Distributed Version Control, git, OpenSSL, Power User, Ruby, Security, Software Development, Source Code Management, SourceTree, Subversion/SVN | 7 Comments »

Simple download script to get all FREE Microsoft eBooks again! Including: Windows 10, Office 365, Office 2016, Power BI, Azure, Windows 8.1, Office 2013, SharePoint 2016, SharePoint 2013, Dynamics CRM, PowerShell, Exchange Server, System Center, Cloud, SQL Server and more! | Microsoft Director of Sales Excellence – Eric Ligman

Posted by jpluimers on 2016/12/21

I saw a lot of people mention the Eric Ligman, Microsoft Director of Sales Excellence Blog a while ago: FREE! That’s Right, I’m Giving Away MILLIONS of FREE Microsoft eBooks again! Including: Windows 10, Office 365, Office 2016, Power BI, Azure, Windows 8.1, Office 2013, SharePoint 2016, SharePoint 2013, Dynamics CRM, PowerShell, Exchange Server, System Center, Cloud, SQL Server and more! | Microsoft Director of Sales Excellence – Eric Ligman

Even though I make most of my income from the Microsoft World, my main machine is a Mac and I dislike browsing

So I wanted to download them all in one easy go so SpotLight could index them.

Luckily there is a file that has all the download URLs in it: http://ligman.me/29zpthb (it expands to http://www.mssmallbiz.com/ericligman/Key_Shorts/MSFTFreeEbooks.txt and is archived at http://web.archive.org/web/*/http://www.mssmallbiz.com/ericligman/Key_Shorts/MSFTFreeEbooks.txt).

The file is mentioned at How to “Download All” of the FREE eBooks and Resources in My FREE eBooks Giveaway | Microsoft Director of Sales Excellence – Eric Ligman.

It’s very easy to download from there using wget (on Windows get it from https://eternallybored.org/misc/wget/ – the x64 versions work fine).

Be sure to use a “recent” version as 1.12 and lower have no support for the --trust-server-names parameter which makes wget use filenames from the http 301 followed links:

--trust-server-names
     If this is set to on, on a redirect the last component of the redirection URL will be used as the local file name.  By default it is used the last component in the original URL.

This is the script:

wget -m -np --trust-server-names http://ligman.me/29zpthb
wget -m -np --trust-server-names --input-file www.mssmallbiz.com/ericligman/Key_Shorts/MSFTFreeEbooks.txt

You might think why not do just wget -m -np --trust-server-names --input-file http://ligman.me/29zpthb  in one go?

Simple answer: like all software, wget occasionally crashes somewhere in the middle of downloading the URLs embedded.

If you restart, then it sees the followed http://ligman.me/29zpthb file has already been downloaded and won’t re-scan its contents.

Bug? I’m not sure. But the two-liner just works.

–jeroen

PS: if you want a script with all the URLs, try these:

https://news.ycombinator.com/item?id=12071552


wget –trust-server-names -m -np http://ligman.me/29ngkYn
wget –trust-server-names -m -np http://ligman.me/29jL5wW
wget –trust-server-names -m -np http://ligman.me/29afIRV
wget –trust-server-names -m -np http://ligman.me/29pyHgR
wget –trust-server-names -m -np http://ligman.me/29dmbfC
wget –trust-server-names -m -np http://ligman.me/29ollRF
wget –trust-server-names -m -np http://ligman.me/29gvv67
wget –trust-server-names -m -np http://ligman.me/29pzkHg
wget –trust-server-names -m -np http://ligman.me/29CWQ20
wget –trust-server-names -m -np http://ligman.me/1G0Cm7T
wget –trust-server-names -m -np http://ligman.me/29vDVrw
wget –trust-server-names -m -np http://ligman.me/29CW4SV
wget –trust-server-names -m -np http://ligman.me/29G1z1N
wget –trust-server-names -m -np http://ligman.me/29yWAAO
wget –trust-server-names -m -np http://ligman.me/29DHWHq
wget –trust-server-names -m -np http://ligman.me/1HGwMgm
wget –trust-server-names -m -np http://ligman.me/29yUVeH
wget –trust-server-names -m -np http://ligman.me/29ErxWs
wget –trust-server-names -m -np http://ligman.me/29EsHkr
wget –trust-server-names -m -np http://ligman.me/29v5zCF
wget –trust-server-names -m -np http://ligman.me/1H32nUT
wget –trust-server-names -m -np http://ligman.me/29yixk9
wget –trust-server-names -m -np http://ligman.me/29vq6d2
wget –trust-server-names -m -np http://ligman.me/29cvrjG
wget –trust-server-names -m -np http://ligman.me/29pzjTR
wget –trust-server-names -m -np http://ligman.me/29rPOf6
wget –trust-server-names -m -np http://ligman.me/29ctW9z
wget –trust-server-names -m -np http://ligman.me/29gvoHt
wget –trust-server-names -m -np http://ligman.me/29gvfEd
wget –trust-server-names -m -np http://ligman.me/29LvcBg
wget –trust-server-names -m -np http://ligman.me/29DS3gJ
wget –trust-server-names -m -np http://ligman.me/1q9L65I
wget –trust-server-names -m -np http://ligman.me/29pufLO
wget –trust-server-names -m -np http://ligman.me/29wODdA
wget –trust-server-names -m -np http://ligman.me/29vch9q
wget –trust-server-names -m -np http://ligman.me/29EmfZc
wget –trust-server-names -m -np http://ligman.me/29LXmMt
wget –trust-server-names -m -np http://ligman.me/29qwKfQ
wget –trust-server-names -m -np http://ligman.me/29sp3nZ
wget –trust-server-names -m -np http://ligman.me/29yWFFf
wget –trust-server-names -m -np http://ligman.me/29ZNaMN
wget –trust-server-names -m -np http://ligman.me/29gYy5h
wget –trust-server-names -m -np http://ligman.me/29NhudA
wget –trust-server-names -m -np http://ligman.me/29jDRJf
wget –trust-server-names -m -np http://ligman.me/29conIf
wget –trust-server-names -m -np http://ligman.me/29cnLlL
wget –trust-server-names -m -np http://ligman.me/29fNYRE
wget –trust-server-names -m -np http://ligman.me/29cq9cw
wget –trust-server-names -m -np http://ligman.me/29acqhj
wget –trust-server-names -m -np http://ligman.me/29fJJCS
wget –trust-server-names -m -np http://ligman.me/29nbxWK
wget –trust-server-names -m -np http://ligman.me/29fO9MV
wget –trust-server-names -m -np http://ligman.me/29pr2x1
wget –trust-server-names -m -np http://ligman.me/29oa0kH
wget –trust-server-names -m -np http://ligman.me/29i6ntm
wget –trust-server-names -m -np http://ligman.me/29n7JVF
wget –trust-server-names -m -np http://ligman.me/29fQsQ4
wget –trust-server-names -m -np http://ligman.me/29fQo2J
wget –trust-server-names -m -np http://ligman.me/29idz8T
wget –trust-server-names -m -np http://ligman.me/29dfwlu
wget –trust-server-names -m -np http://ligman.me/29fLliP
wget –trust-server-names -m -np http://ligman.me/29i83TI
wget –trust-server-names -m -np http://ligman.me/29diypX
wget –trust-server-names -m -np http://ligman.me/29fNpHO
wget –trust-server-names -m -np http://ligman.me/29oefNf
wget –trust-server-names -m -np http://ligman.me/29jGTgC
wget –trust-server-names -m -np http://ligman.me/29crPhL
wget –trust-server-names -m -np http://ligman.me/29FUJIk
wget –trust-server-names -m -np http://ligman.me/1G2oDNG
wget –trust-server-names -m -np http://ligman.me/29u5uMT
wget –trust-server-names -m -np http://ligman.me/29rlRt3
wget –trust-server-names -m -np http://ligman.me/29Yd9V0
wget –trust-server-names -m -np http://ligman.me/29s4EQ1
wget –trust-server-names -m -np http://ligman.me/29vkv6E
wget –trust-server-names -m -np http://ligman.me/29A3q8Z
wget –trust-server-names -m -np http://ligman.me/29H7ovO
wget –trust-server-names -m -np http://ligman.me/1dHMOui
wget –trust-server-names -m -np http://ligman.me/1G2pw8X
wget –trust-server-names -m -np http://ligman.me/29gnaPK
wget –trust-server-names -m -np http://ligman.me/29d7GZH
wget –trust-server-names -m -np http://ligman.me/29i2Mvf
wget –trust-server-names -m -np http://ligman.me/29rbpkY
wget –trust-server-names -m -np http://ligman.me/29e6cTO
wget –trust-server-names -m -np http://ligman.me/29hJU1c
wget –trust-server-names -m -np http://ligman.me/29bcJtd
wget –trust-server-names -m -np http://ligman.me/29bcRZO
wget –trust-server-names -m -np http://ligman.me/29d5mS2
wget –trust-server-names -m -np http://ligman.me/29cz6OD
wget –trust-server-names -m -np http://ligman.me/29fDult
wget –trust-server-names -m -np http://ligman.me/29pEdjN
wget –trust-server-names -m -np http://ligman.me/29rwoY0
wget –trust-server-names -m -np http://ligman.me/29fTQrx
wget –trust-server-names -m -np http://ligman.me/29gfrkN
wget –trust-server-names -m -np http://ligman.me/29rwoHw
wget –trust-server-names -m -np http://ligman.me/29d5AbX
wget –trust-server-names -m -np http://ligman.me/29fudHc
wget –trust-server-names -m -np http://ligman.me/29FzGG5
wget –trust-server-names -m -np http://ligman.me/29osNwd
wget –trust-server-names -m -np http://ligman.me/29a22WR
wget –trust-server-names -m -np http://ligman.me/29alDpK
wget –trust-server-names -m -np http://ligman.me/29fDylj
wget –trust-server-names -m -np http://ligman.me/29jPTCx
wget –trust-server-names -m -np http://ligman.me/29d5XTw
wget –trust-server-names -m -np http://ligman.me/29rUIci
wget –trust-server-names -m -np http://ligman.me/29hVdVa
wget –trust-server-names -m -np http://ligman.me/29ijDhm
wget –trust-server-names -m -np http://ligman.me/29pn5e2
wget –trust-server-names -m -np http://ligman.me/29ckVx7
wget –trust-server-names -m -np http://ligman.me/29cfePX
wget –trust-server-names -m -np http://ligman.me/29vGIvY
wget –trust-server-names -m -np http://ligman.me/29hfnPR
wget –trust-server-names -m -np http://ligman.me/29fCVFe
wget –trust-server-names -m -np http://ligman.me/29a6YLu
wget –trust-server-names -m -np http://ligman.me/29n4GwJ
wget –trust-server-names -m -np http://ligman.me/29jAS3v
wget –trust-server-names -m -np http://ligman.me/29ci56U
wget –trust-server-names -m -np http://ligman.me/29nW9L3
wget –trust-server-names -m -np http://ligman.me/29hV6ZM
wget –trust-server-names -m -np http://ligman.me/29d1qAV
wget –trust-server-names -m -np http://ligman.me/29pfpbI
wget –trust-server-names -m -np http://ligman.me/29v8nwX
wget –trust-server-names -m -np http://ligman.me/29uq452
wget –trust-server-names -m -np http://ligman.me/29d1wc3
wget –trust-server-names -m -np http://ligman.me/29Y1O7a
wget –trust-server-names -m -np http://ligman.me/29a7wRA
wget –trust-server-names -m -np http://ligman.me/29pnEEG
wget –trust-server-names -m -np http://ligman.me/1FYtDD8
wget –trust-server-names -m -np http://ligman.me/1HByNKS
wget –trust-server-names -m -np http://ligman.me/1NCfcKC
wget –trust-server-names -m -np http://ligman.me/1HCDxl9
wget –trust-server-names -m -np http://ligman.me/1HCCCRP
wget –trust-server-names -m -np http://ligman.me/1H4Q0e5
wget –trust-server-names -m -np http://ligman.me/1JI6V77
wget –trust-server-names -m -np http://ligman.me/1CSMobd
wget –trust-server-names -m -np http://ligman.me/1jWMJA2
wget –trust-server-names -m -np http://ligman.me/1m6xucg
wget –trust-server-names -m -np http://ligman.me/1onTg9n
wget –trust-server-names -m -np http://ligman.me/1n49kzj
wget –trust-server-names -m -np http://ligman.me/1sgBtn4
wget –trust-server-names -m -np http://ligman.me/1qZlnOJ
wget –trust-server-names -m -np http://ligman.me/TWa2Dg
wget –trust-server-names -m -np http://ligman.me/1vM9mwt
wget –trust-server-names -m -np http://ligman.me/1qzON6Q
wget –trust-server-names -m -np http://ligman.me/1rB8nl1
wget –trust-server-names -m -np http://ligman.me/TL3pn1
wget –trust-server-names -m -np http://ligman.me/1vM9H2d
wget –trust-server-names -m -np http://ligman.me/29odbJ6
wget –trust-server-names -m -np http://ligman.me/1LSKTC0
wget –trust-server-names -m -np http://ligman.me/1qC1pu4
wget –trust-server-names -m -np http://ligman.me/1dHSpRh
wget –trust-server-names -m -np http://ligman.me/1LO5k1Y
wget –trust-server-names -m -np http://ligman.me/1M7Xr5v
wget –trust-server-names -m -np http://ligman.me/29jLNtX
wget –trust-server-names -m -np http://ligman.me/29agpuw
wget –trust-server-names -m -np http://ligman.me/29cv8FE
wget –trust-server-names -m -np http://ligman.me/29ieXIo
wget –trust-server-names -m -np http://ligman.me/29dmCXi
wget –trust-server-names -m -np http://ligman.me/29jLjnM
wget –trust-server-names -m -np http://ligman.me/29agkqx
wget –trust-server-names -m -np http://ligman.me/29gvTBJ
wget –trust-server-names -m -np http://ligman.me/29pztuz
wget –trust-server-names -m -np http://ligman.me/29dmTJT
wget –trust-server-names -m -np http://ligman.me/29ieSEI
wget –trust-server-names -m -np http://ligman.me/29hB9CQ
wget –trust-server-names -m -np http://ligman.me/29fOWdV
wget –trust-server-names -m -np http://ligman.me/1JPNIAt
wget –trust-server-names -m -np http://ligman.me/29Xnqk8
wget –trust-server-names -m -np http://ligman.me/29oRWlp
wget –trust-server-names -m -np http://ligman.me/29csX4C
wget –trust-server-names -m -np http://ligman.me/29jH8bx
wget –trust-server-names -m -np http://ligman.me/29pcQFA
wget –trust-server-names -m -np http://ligman.me/29FkNr3
wget –trust-server-names -m -np http://ligman.me/12FIapt
wget –trust-server-names -m -np http://ligman.me/13WvGXa
wget –trust-server-names -m -np http://ligman.me/1bPPb6C
wget –trust-server-names -m -np http://ligman.me/12FIZ1I
wget –trust-server-names -m -np http://ligman.me/16CaDM1
wget –trust-server-names -m -np http://ligman.me/19LwMLI
wget –trust-server-names -m -np http://ligman.me/1JHmqiB
wget –trust-server-names -m -np http://ligman.me/1KHqGNK
wget –trust-server-names -m -np http://ligman.me/1M7Ycve
wget –trust-server-names -m -np http://ligman.me/1LSOsIu
wget –trust-server-names -m -np http://ligman.me/1UrQDFx
wget –trust-server-names -m -np http://ligman.me/TUmyTW
wget –trust-server-names -m -np http://ligman.me/1NLviCk
wget –trust-server-names -m -np http://ligman.me/17iaq4l
wget –trust-server-names -m -np http://ligman.me/1bPRqqz
wget –trust-server-names -m -np http://ligman.me/17iah0Q
wget –trust-server-names -m -np http://ligman.me/1287Jt4
wget –trust-server-names -m -np http://ligman.me/29djdrk
wget –trust-server-names -m -np http://ligman.me/29rLH2H
wget –trust-server-names -m -np http://ligman.me/29fNPxT
wget –trust-server-names -m -np http://ligman.me/29ddm60
wget –trust-server-names -m -np http://ligman.me/29gsnHt
wget –trust-server-names -m -np http://ligman.me/29nc2QS
wget –trust-server-names -m -np http://ligman.me/29fOrnd
wget –trust-server-names -m -np http://ligman.me/29dk0Ze
wget –trust-server-names -m -np http://ligman.me/29aewh2
wget –trust-server-names -m -np http://ligman.me/29gteI8
wget –trust-server-names -m -np http://ligman.me/29ibJVq
wget –trust-server-names -m -np http://ligman.me/29fKMD6
wget –trust-server-names -m -np http://ligman.me/29cthAz
wget –trust-server-names -m -np http://ligman.me/29ohqUT
wget –trust-server-names -m -np http://ligman.me/29crGiw
wget –trust-server-names -m -np http://ligman.me/29gsFOl
wget –trust-server-names -m -np http://ligman.me/29ncgrb
wget –trust-server-names -m -np http://ligman.me/29fKWdi
wget –trust-server-names -m -np http://ligman.me/29djvi9
wget –trust-server-names -m -np http://ligman.me/29FW41O
wget –trust-server-names -m -np http://ligman.me/29ddKBp
wget –trust-server-names -m -np http://ligman.me/29dkhf4
wget –trust-server-names -m -np http://ligman.me/29rML6Q
wget –trust-server-names -m -np http://ligman.me/29hxyEN
wget –trust-server-names -m -np http://ligman.me/29fPweO
wget –trust-server-names -m -np http://ligman.me/29fPMug
wget –trust-server-names -m -np http://ligman.me/29fPnIe
wget –trust-server-names -m -np http://ligman.me/29hxogT
wget –trust-server-names -m -np http://ligman.me/29deg2k
wget –trust-server-names -m -np http://ligman.me/29pwCBO
wget –trust-server-names -m -np http://ligman.me/29fPAec
wget –trust-server-names -m -np http://ligman.me/29deQgz
wget –trust-server-names -m -np http://ligman.me/29afaLE
wget –trust-server-names -m -np http://ligman.me/29pxarl
wget –trust-server-names -m -np http://ligman.me/29ne5V5
wget –trust-server-names -m -np http://ligman.me/29csBjh
wget –trust-server-names -m -np http://ligman.me/29dkZZK
wget –trust-server-names -m -np http://ligman.me/29ojrAy
wget –trust-server-names -m -np http://ligman.me/29jJLdx
wget –trust-server-names -m -np http://ligman.me/29df2fw
wget –trust-server-names -m -np http://ligman.me/29cu6sX
wget –trust-server-names -m -np http://ligman.me/29dlaE5
wget –trust-server-names -m -np http://ligman.me/29FZx0B
wget –trust-server-names -m -np http://ligman.me/29idnpO
wget –trust-server-names -m -np http://ligman.me/29dlH9d
wget –trust-server-names -m -np http://ligman.me/29cs157
wget –trust-server-names -m -np http://ligman.me/29dkq1V
wget –trust-server-names -m -np http://ligman.me/29aelm3
wget –trust-server-names -m -np http://ligman.me/29ycEnb
wget –trust-server-names -m -np http://ligman.me/29w5gr9
wget –trust-server-names -m -np http://ligman.me/29pfQ50
wget –trust-server-names -m -np http://ligman.me/1sgMWDe
wget –trust-server-names -m -np http://ligman.me/29w68w8
wget –trust-server-names -m -np http://ligman.me/29viFmi
wget –trust-server-names -m -np http://ligman.me/29zYWzl
wget –trust-server-names -m -np http://ligman.me/29H2bo1
wget –trust-server-names -m -np http://ligman.me/29AT60J
wget –trust-server-names -m -np http://ligman.me/29xtlNa
wget –trust-server-names -m -np http://ligman.me/29xtHDs
wget –trust-server-names -m -np http://ligman.me/29GpFsY
wget –trust-server-names -m -np http://ligman.me/29ddd2b
wget –trust-server-names -m -np http://ligman.me/29fJpEc
wget –trust-server-names -m -np http://ligman.me/29cs7Fg
wget –trust-server-names -m -np http://ligman.me/29fJA2g
wget –trust-server-names -m -np http://ligman.me/29cqzzq
wget –trust-server-names -m -np http://ligman.me/29ddbYb
wget –trust-server-names -m -np http://ligman.me/29rLlZV
wget –trust-server-names -m -np http://ligman.me/29ialCf
wget –trust-server-names -m -np http://ligman.me/29pvj5I
wget –trust-server-names -m -np http://ligman.me/29hwj8y
wget –trust-server-names -m -np http://ligman.me/29dj7zY
wget –trust-server-names -m -np http://ligman.me/1sl39Hs
wget –trust-server-names -m -np http://ligman.me/1anyEJj
wget –trust-server-names -m -np http://ligman.me/17icbPc
wget –trust-server-names -m -np http://ligman.me/ZZezok
wget –trust-server-names -m -np http://ligman.me/12S035G
wget –trust-server-names -m -np http://ligman.me/12RZWY1
wget –trust-server-names -m -np http://ligman.me/13PlvVY
wget –trust-server-names -m -np http://ligman.me/12FMEMP
wget –trust-server-names -m -np http://ligman.me/128a1ID
wget –trust-server-names -m -np http://ligman.me/19LCgpM
wget –trust-server-names -m -np http://ligman.me/13Pn1XY
wget –trust-server-names -m -np http://ligman.me/13WChkr
wget –trust-server-names -m -np http://ligman.me/12FN71F
wget –trust-server-names -m -np http://ligman.me/ZZh7Ts
wget –trust-server-names -m -np http://ligman.me/14HcD5O
wget –trust-server-names -m -np http://ligman.me/17UHSNJ
wget –trust-server-names -m -np http://ligman.me/19LEPIz
wget –trust-server-names -m -np http://ligman.me/11VIxdB
wget –trust-server-names -m -np http://ligman.me/12FObmf
wget –trust-server-names -m -np http://ligman.me/11HXnjD
wget –trust-server-names -m -np http://ligman.me/14fCxLS
wget –trust-server-names -m -np http://ligman.me/16CkUI4
wget –trust-server-names -m -np http://ligman.me/17VqB79
wget –trust-server-names -m -np http://ligman.me/13XRfqr
wget –trust-server-names -m -np http://ligman.me/19fCnqV
wget –trust-server-names -m -np http://ligman.me/11WvSqL
wget –trust-server-names -m -np http://ligman.me/1002Upx
wget –trust-server-names -m -np http://ligman.me/14HMJ1Q
wget –trust-server-names -m -np http://ligman.me/10ttQ3n
wget –trust-server-names -m -np http://ligman.me/15fRBI9
wget –trust-server-names -m -np http://ligman.me/19fDuqE
wget –trust-server-names -m -np http://ligman.me/11IMDlh
wget –trust-server-names -m -np http://ligman.me/10tu5eD
wget –trust-server-names -m -np http://ligman.me/128NAD6
wget –trust-server-names -m -np http://ligman.me/1bRgXzV
wget –trust-server-names -m -np http://ligman.me/14givRo
wget –trust-server-names -m -np http://ligman.me/18VNatF
wget –trust-server-names -m -np http://ligman.me/128Ogso
wget –trust-server-names -m -np http://ligman.me/13Qbl7k
wget –trust-server-names -m -np http://ligman.me/10tuWvL
wget –trust-server-names -m -np http://ligman.me/16dFAWc
wget –trust-server-names -m -np http://ligman.me/11lkViX
wget –trust-server-names -m -np http://ligman.me/1bRhVMn
wget –trust-server-names -m -np http://ligman.me/14HOjki
wget –trust-server-names -m -np http://ligman.me/1bRiXbc
wget –trust-server-names -m -np http://ligman.me/13QcfRi
wget –trust-server-names -m -np http://ligman.me/16E4lf4
wget –trust-server-names -m -np http://ligman.me/1005lbB
wget –trust-server-names -m -np http://ligman.me/14HOxb2
wget –trust-server-names -m -np http://ligman.me/16E6G9L
wget –trust-server-names -m -np http://ligman.me/14gkBRc
wget –trust-server-names -m -np http://ligman.me/1006fEV
wget –trust-server-names -m -np http://ligman.me/16dHXZ9
wget –trust-server-names -m -np http://ligman.me/13QdHDb
wget –trust-server-names -m -np http://ligman.me/11IQ8bd
wget –trust-server-names -m -np http://ligman.me/17jgPfG
wget –trust-server-names -m -np http://ligman.me/15fXTHQ
wget –trust-server-names -m -np http://ligman.me/11vx5Cy
wget –trust-server-names -m -np http://ligman.me/N1JiHO
wget –trust-server-names -m -np http://ligman.me/OudHlO
wget –trust-server-names -m -np http://ligman.me/OudJdr
wget –trust-server-names -m -np http://ligman.me/N1I2o4
wget –trust-server-names -m -np http://ligman.me/Oue0NG
wget –trust-server-names -m -np http://ligman.me/Oue2oE
wget –trust-server-names -m -np http://ligman.me/N1HQW0
wget –trust-server-names -m -np http://ligman.me/Ouebsh
wget –trust-server-names -m -np http://ligman.me/OuecfK
wget –trust-server-names -m -np http://ligman.me/N1Ienp
wget –trust-server-names -m -np http://ligman.me/OuelQu
wget –trust-server-names -m -np http://ligman.me/OueoMd
wget –trust-server-names -m -np http://ligman.me/N1J8A8
wget –trust-server-names -m -np http://ligman.me/OueFPb
wget –trust-server-names -m -np http://ligman.me/OueIKU
wget –trust-server-names -m -np http://ligman.me/N1I935
wget –trust-server-names -m -np http://ligman.me/OueUd4
wget –trust-server-names -m -np http://ligman.me/OueVxy
wget –trust-server-names -m -np http://ligman.me/N1HMW7
wget –trust-server-names -m -np http://ligman.me/Ouf6sO
wget –trust-server-names -m -np http://ligman.me/Ouf9og
wget –trust-server-names -m -np http://ligman.me/N1Jo27
wget –trust-server-names -m -np http://ligman.me/OufgQN
wget –trust-server-names -m -np http://ligman.me/OufkQs
wget –trust-server-names -m -np http://ligman.me/N1HEpM
wget –trust-server-names -m -np http://ligman.me/Oufwzg
wget –trust-server-names -m -np http://ligman.me/OufCXN
wget –trust-server-names -m -np http://ligman.me/N1JfvI
wget –trust-server-names -m -np http://ligman.me/OufRSs
wget –trust-server-names -m -np http://ligman.me/OufVlq
wget –trust-server-names -m -np http://ligman.me/N1HX3Q
wget –trust-server-names -m -np http://ligman.me/Oug5Jl
wget –trust-server-names -m -np http://ligman.me/Oug74a
wget –trust-server-names -m -np http://ligman.me/1H1Exty
wget –trust-server-names -m -np http://ligman.me/1S1f34H
wget –trust-server-names -m -np http://ligman.me/1HGqihD
wget –trust-server-names -m -np http://ligman.me/1G2ccS5
wget –trust-server-names -m -np http://ligman.me/1ffeiJo
wget –trust-server-names -m -np http://ligman.me/1NKjUqp
wget –trust-server-names -m -np http://ligman.me/1KEShAt
wget –trust-server-names -m -np http://ligman.me/1S1i4C0
wget –trust-server-names -m -np http://ligman.me/1ReR3Qq
wget –trust-server-names -m -np http://ligman.me/1dGxnSW
wget –trust-server-names -m -np http://ligman.me/1IZCarE
wget –trust-server-names -m -np http://ligman.me/1H2Bq3J
wget –trust-server-names -m -np http://ligman.me/1Rf7BaZ
wget –trust-server-names -m -np http://ligman.me/1LRIveQ
wget –trust-server-names -m -np http://ligman.me/1dGxEW7
wget –trust-server-names -m -np http://ligman.me/1omCrM6
wget –trust-server-names -m -np http://ligman.me/1j5aDhH
wget –trust-server-names -m -np http://ligman.me/1n3mkVY
wget –trust-server-names -m -np http://ligman.me/1n3mAUZ
wget –trust-server-names -m -np http://ligman.me/1vKOGot
wget –trust-server-names -m -np http://ligman.me/1H7bxTv
wget –trust-server-names -m -np http://ligman.me/1G0DEjb
wget –trust-server-names -m -np http://ligman.me/29pbiLY
wget –trust-server-names -m -np http://ligman.me/29dlTVV
wget –trust-server-names -m -np http://ligman.me/29rOYz9
wget –trust-server-names -m -np http://ligman.me/29ie2rq
wget –trust-server-names -m -np http://ligman.me/29fQN5c
wget –trust-server-names -m -np http://ligman.me/29idEct
wget –trust-server-names -m -np http://ligman.me/29nevuE
wget –trust-server-names -m -np http://ligman.me/29olaWI
wget –trust-server-names -m -np http://ligman.me/29pz4Im
wget –trust-server-names -m -np http://ligman.me/29fQRlQ
wget –trust-server-names -m -np http://ligman.me/29hzPzU
wget –trust-server-names -m -np http://ligman.me/29rON6X
wget –trust-server-names -m -np http://ligman.me/29cumbH
wget –trust-server-names -m -np http://ligman.me/29cv1JW
wget –trust-server-names -m -np http://ligman.me/29dmh6L
wget –trust-server-names -m -np http://ligman.me/29dfUkt
wget –trust-server-names -m -np http://ligman.me/1giniO7
wget –trust-server-names -m -np http://ligman.me/29H7K5O
wget –trust-server-names -m -np http://ligman.me/1qbEeVc
wget –trust-server-names -m -np http://ligman.me/1ewwcq6
wget –trust-server-names -m -np http://ligman.me/1H1MFKr
wget –trust-server-names -m -np http://ligman.me/1pxniH4
wget –trust-server-names -m -np http://ligman.me/1dG2ZZ9
wget –trust-server-names -m -np http://ligman.me/29v9igV
wget –trust-server-names -m -np http://ligman.me/29hofVk
wget –trust-server-names -m -np http://ligman.me/29idcee
wget –trust-server-names -m -np http://ligman.me/29rOvx0
wget –trust-server-names -m -np http://ligman.me/29ctkki
wget –trust-server-names -m -np http://ligman.me/29okalt
wget –trust-server-names -m -np http://ligman.me/29i2CEe
wget –trust-server-names -m -np http://ligman.me/29FT71n
wget –trust-server-names -m -np http://ligman.me/29NBSj1
wget –trust-server-names -m -np http://ligman.me/29H3O3o
wget –trust-server-names -m -np http://ligman.me/29OHLKa
wget –trust-server-names -m -np http://ligman.me/29uHKKV

 

 

Posted in *nix, .NET, Development, Office, Power User, Software Development, wget, Windows | 2 Comments »

.NET/C# some links on querying the ActiveDirectory

Posted by jpluimers on 2016/12/15

Without dsquery installable, I had to query an ActiveDirectory spanning two domains.

Here are some links that helped:

–jeroen

Posted in .NET, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, C#, C# 2.0, C# 3.0, C# 4.0, C# 5.0, C# 6 (Roslyn), Development, Software Development | Leave a Comment »