Windows

Windows 10 1803 Timeline Feature

The May 2018 version of Windows 10 has an updated alt-tab view called the timeline. While it will eventually be more useful, its current implementation is poor.

DSC vs. GPO vs. SCCM vs. MDM (Intune)

Microsoft Windows administrators now have a number of ways for managing their estates. Group Policy (GPO) Allows very fine-grained control over every aspect of Windows. Primarily aimed at Windows desktops. Requires Active Directory (AD) and very careful configuration. Requires well trained specialist staff to get it right. System Center Configuration Manager (SCCM) Allows central control over software delivery. Also requires AD. Configuration of delivery packages can be complex and very careful change control is required.


📖 Posts | 📎 Windows | 🔖 Apple, iTunes, Windows Store

iTunes Finally Hits the Windows Store - What Does it Mean?

iTunes on Windows has always been a horrible application. It is highly intrusive, installing many background services. It also has a terrible UX/design. So, now that it is available in the Windows Store, is there a difference? Improvement?

🕑
📖 Posts | 📎 Software, Windows | 🔖 EXIF, IPTC, Win7, XMP

Windows 7 supports IPTC in JPEG Picture Files! (Not quite – Adobe XMP actually)

Update 2018-04-22: Reformatted after move from WordPress to Hugo. Wow! I’ve just discovered by accident that Windows 7 beta supports a few IPTC XMP attributes in picture files. At last, Microsoft supporting standards! Above is a screen shot from the properties of a test picture. The Description and Origin sections seem to be standard IPTC fields and I checked them out using iTag. In iTag the Title attribute comes out as both the Title and the Description.

🕑
📖 Posts | 📎 Windows | 🔖 Batch, Configuration, Scripting, Vista, Win7

How-to show a Message of the Day (MOTD) at the Windows Command Prompt

One of the features available under UNIX is the Message of the Day (MOTD). This is run every time you start a command prompt and displays the content of a file. In addition, the UNIX shells allow all sorts of stuff to be run and configured every time you start a new prompt using the .profile and .bashrc command files. Windows users don’t generally expect that kind of flexibility from their command prompts.


📖 Kb | 📎 Windows | 🔖 Support

Windows Hints and Tips

Information about Microsoft windows. Including specific support along with hints and tips.


📖 Kb | 📎 Windows | 🔖 Support, BitLocker, Win10

BitLocker issues and fixes

BitLocker allows you to fully encrypt drives. It can be enabled so that it protects drives before boot. It also allows administrative recovery keys. However, sometimes it can go wrong.


📖 Posts | 📎 General, Microsoft, Windows | 🔖None

A simple mail filer for Microsoft Outlook (VBA)

Like many people I receive an unmanageable amount of email each day. Many days I get through only around 1/3 of the email I receive. However, the role I am in professionally requires me to retain a large proportion of correspondence. Some because it relates to ongoing projects, other because of security, audit or compliance reasons. In addition, I work across many projects. It isn’t unusual for me to be involved in two dozen or so projects at any one time on top of my day-to-day management work.


📖 Posts | 📎 Microsoft, Software, Windows | 🔖 email, Microsoft, Outlook, VBA

A simple mail filer for Microsoft Outlook (VBA)

Like many people I receive an unmanageable amount of email each day. Many days I get through only around 1/3 of the email I receive. However, the role I am in professionally requires me to retain a large proportion of correspondence. Some because it relates to ongoing projects, other because of security, audit or compliance reasons. In addition, I work across many projects. It isn’t unusual for me to be involved in two dozen projects at any one time on top of my day-to-day management work.


📖 Posts | 📎 Enterprise, Microsoft, Windows | 🔖 Hardware, Laptops

New Laptop: Lenovo ThinkPad Yoga

I have the pleasure of trying a new laptop right now as we consider them for work. The Lenovo ThinkPad Yoga. We have this configured with an Intel i5, 8GB RAM, 1TB HDD with 16GB SDD speed boost, the touch & pen screen. It is a nice laptop with a screen that folds right over so you can use it as a slightly chunky tablet, the keyboard locks in this mode so you don’t accidentally press keys.

Microsoft 64-bit Application Support (lack-of)

Microsoft’s 64-bit support is still sorely fragmented as we find out with a brand new laptop trying to access Microsoft SharePoint.


📖 Posts | 📎 Diigo, iPhone-iPad-iPod, Software, Windows | 🔖 Printing

Diigo Bookmarks 05/20/2011

<p class="diigo-tags"> <span>tags:</span> <a href="http://www.diigo.com/user/knightnet/windows">windows</a> <a href="http://www.diigo.com/user/knightnet/ipad">ipad</a> <a href="http://www.diigo.com/user/knightnet/iPhone">iPhone</a> </p>


📖 Posts | 📎 Development, Microsoft, Windows | 🔖 Maps, Office, VBA

Nearest Postcode Search in Microsoft Excel

I need to find a load of addresses by proximity to a postcode. I have the addresses in a Microsoft Access database. Download Paul Jenkins’s UK Postcode csv and import into Access as a table Create a query on your own table adding the following calculated field: <pre>PCregion: Trim( Left( [My Table]![Postcode], InStr( [My Table]![Postcode], &#8221; &#8221; ) ) )</pre> Create a second query that joins the above query to the imported postcode table.


📖 Posts | 📎 Development, Windows | 🔖 BASH, Batch, Cygwin, Scripting

Cygwin BASH function to open the latest version of a document

One handy function I’ve added to .bashrc (so it is always available) under Cygwin (the LINUX command environment for Windows) works out the current working version of a document. It assumes that you keep copies that have a version number or date in the file name that will sort correctly. You can use it with an alias like this: If you name your documents sensibly such as “a-document-2009-07-20.doc” or “a-document-v01.01.doc”, then the latest version of the file will be opened in the default application


📖 Posts | 📎 Software, Windows | 🔖 Backup, Batch, Cygwin, Scripting, Win7

Windows command prompt vs PowerShell vs Cygwin for remote backup scripts

I’ve been struggling with trying to get a new backup routine working for my Laptop. I should point out that I have several complex requirements for backup so my needs are probably not average. However, it really shouldn’t be this hard! I need to use a combination of BZR (Bazaar) for document version control and RSYNC (for files that don’t need version control and for those folders that might contain files too big for version control systems – around 1/3 to 1/2 available memory).