Month: May 2017
Updating a network location in Windows 2012
I had an issue where a server which was joined to a domain had incorrectly set its network as Public. A TechNet article and TenForum article provided the answer (As it states Windows 10 it also applies to Server 2012) so I have placed credits above the steps I followed. Following a re-occurrence I have…
Filtering in Event Viewer Windows Server 2008 onwards
The Event Viewer from Server 2008 onwards is XML based. Filters based on XML syntax can be used such as: <QueryList> <Query Id=”0″ Path=”System”> <Select Path=”System”> *[EventData[Data and (Data='<Search Parameter>’)]] </Select> </Query> </QueryList> <QueryList> <Query Id=”0″ Path=”Application”> <Select Path=”Application”> *[EventData[Data and (Data='<Search Parameter>’)]] </Select> </Query> </QueryList> You…