Om Alexander Gundelack Jensen

Denne forfatter har endnu ikke udfyldt nogle detaljer.
So far Alexander Gundelack Jensen has created 6 blog entries.

Automate Signature And Status Reports With PowerShell – Windows Defender (.txt file)

What you will be able to after reading this blog: Get the latest information about "your" Signature- & Anti Virus reports in Windows Defender and make it into a text file. How to automate it, so it will run every day and give you a status report with time and date. Being able to look at what time and date the latest updates have been completed. First of all, we have to create a folder/directory where the status reports can be stored in. Open up PowerShell in administrative mode and run this script only by copy-paste: $path="C:\" New-Item .\AVStatusReports -ItemType [...]

PowerShell Script That Creates A Folder And A Shortcut On Your Desktop

Basic example of a script that creates a folder in your Local Disk "C"  and then makes a shortcut on desktop so you have easy access to the folder. First of all, open your powershell as administrator and make sure you are at a place where you are able to create folders such as the C:\ drive. PS C:\WINDOWS\system32> cd .. PS C:\WINDOWS> cd .. PS C:\> And now you are able to run the script! - Copy and paste what is written below $path = "C:\" New-Item .\EpicFolder -ItemType Directory -Force $wshshell = New-Object -ComObject WScript.Shell $desktop = [System.Environment]::GetFolderPath('Desktop') [...]

By |2015-09-14T14:21:32+01:00september 14th, 2015|General info, Powershell, Scripting & Development|Kommentarer lukket til PowerShell Script That Creates A Folder And A Shortcut On Your Desktop

Troubleshooting with Remote Desktop Connection – Solving the issues

Problems like: Cannot connect to the machine Not able to sign in on the machine / user / server Security is blocking my connection Quote: "To sign in remotely, you need the right to sign in through Remote Desktop Services. By default members of the Administrators group have this right. If the group you're in does not have the right, or  if the right has been removed from the Administrators group, you need to be granted the right manually." I will now help you with some troubleshooting. Basically there's no fast way of doing it, but every time you've done [...]

Move An Outlook Data file To A New Computer / (.pst) / Emails

Problem: How to Export your Outlook Data file (.pst) from one computer to another Short link to the blog: https://blog.ctglobalservices.com/?p=8923 First I want you to notice that I am using Outlook 2013. There are other versions of outlook and it is possible to do the exact same thing. You are able to transfer the data files from one Outlook version to another. Follow this guide if you want to use another computer and want to keep your old data such as emails, folders and more. Through these steps, you are able to get all your emails and data with you into [...]

Lenovo Laptop Bugs – System Update & Not Waking Up From Sleep Mode

Before we begin, I would like you to download this System Updater from Lenovo - you will have to use it later on: For Windows 7, Windows 8,  Windows 8.1 - [download id="242" format="1"]  For Windows 2000, XP and Vista - [download id="243" format="1"] If you recently bought a Lenovo computer or laptop, you might as well know some of these problems. Problem: Lenovo laptop won't wake up from sleep, there are driver problems & the Fn and CTRL are not working correctly. Let's start with the Fn & CTRL button. Most of you may have noticed that there is a problem [...]

Using Group Policy to Disable Proxy Settings in Chrome

Here is the download link for the Google Chrome Policy Template. You can save it where you want, just remember to save it where you can find it https://dl.google.com/dl/edgedl/chrome/policy/policy_templates.zip When it's downloaded, follow the guide because you will need it later on. Problem: Error 130 (net::ERR_PROXY_CONNECTION_FAILED) Proxy server connection failed or Unable to connect to the proxy server I am aware of the problem that Google Chrome is enabling the use of Proxy in some versions of Windows. Through this guide, you will be able to change the settings of the use of Proxy in Google Chrome for all users, [...]