Skip to main content

Posts

Windows 10 Lock Screen Background Picture Location

Windows 10 Lock Screen Background Picture Folder Windows 10 Lock Screen Background Picture Location Open this folder using Windows Explorer %USERPROFILE%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets But files do not have an extension. How to open the lock screen background picture Do not change these files, Just copy all these files to a temp folder. After copying the files to the folder, then open the command line window by typing CMD in the address bar of that folder. It will open up the command line window.  Then type ren *.* *.jpg Now you will be able to open or even see them from the thumbnail view.
Recent posts

Android - Rooting ? - Bootloader unlock? - Custom ROM ? What is the order??

Rooting your Android? What is rooting?? Unlocking the bootloader ??? Confused! Root The term root in the IT world initially came from the UNIX / Linux Operating Systems.  New stand-alone Android is built on top of the Linux OS. The root is equivalent to Administrator in Windows. So root access is administrative access to the file system. The root can add, edit and delete system files. The root has the ability to change system files such as installing a system-wide ad-blocker by modifying the host file on your device, or uninstalling system apps, such as bloatware that comes pre-installed on your device. Without the root, one can only see files in the root directory instead of editing them. Rooting Giving administrative access to the entire OS.   Bootloader A bootloader is a firmware, very similar to BIOS in a computer. It initializes the Linux kernel and loads all the necessary components required to boot into the Android. And it manages direct access to the device's partitions. Un

Android - error retrieving information from server df-dferh-01

Google Play Store: error retrieving information from server df-dferh-01 I have an Amaze 7 Android tablet. It is an old tablet with Android 4.1.1. The Hongkong based manufacturers of this tablet have vanished, and there are no updates for years. Most of the time it freezes. I tried lots of suggested solutions.  Even tried to flash a custom ROM. But there is no custom ROM for this tablet.  Recently I did a Factory Reset on this tablet. Then When I tried to use Google Play Store to install new apps, the above error popped up. So I searched the internet by googling & bing-ing.   If you search the internet for a solution for this error, you see the following type of answers . There are so many articles that explain the same. Clear cache and data from Play Store: 1. Open the device Settings app Settings. 2. Tap Apps & notifications and later See all applications. 3. Scroll down and tap Google Play Store Google Play. 4. Tap Storage and later Clear cache. 5. Then tap Clear data. 6. Re-

How to change password length requirement in Umbraco

Change the password length requirement in Umbraco This solution will work with Umbraco 8.xx versions. Previous or newer versions may need some additional or fewer changes.  In Umbraco default password length is 10, and need to provide a valid email address for the user name.   If you are developing or designing a website using Umbraco and testing it you may need to shorten the password length or use a short username in your development website to save time. (NOT in the production site) Changing default password length in a new installation This method is for a fresh Umbraco installation. For an existing installation, there is some extra work to do. I will discuss it later. Lots of people have an issue with changing the configuration to suit this requirement.  First, we will look at the issue. Open the  Web.config file and go to the following section <!-- Membership Provider --> <membership defaultProvider = "UmbracoMembershipProvider" userIsOnlineTimeWindow = &quo

Replacing part of file names in multiple files in a folder on Windows

Renaming or Replacing multiple file names in a folder - The Fast way -Windows 10 Suppose we have many files in a folder with similar pattern and we want to rename all of them. Doing this manually using explorer or command prompt is very time consuming. For example we have following files stored in d:\Products\ folder:      scean1-160_x_90.jpg      scean1-240_x_135.jpg      scean1-320_x_180.jpg      scean1-480_x_270.jpg      scean1-640_x_360.jpg      scean1-960_x_540.jpg      scean1-1280_x_720.jpg      scean1-1920_x_1080.jpg      screen1-2560_x_1440.jpg      screen1-3840_x_2160.jpg      scean1-5120_x_2880.jpg We want to change the common string pattern "_x_" to "x". Easiest way to do this in Windows 10. Useing Windows Power Shell open the folder and execute the following command: get-childitem  | foreach { rename-item $_ $_.Name.Replace("_x_", "x") }

Umbraco 8.1.3 - Changes to CSS is not showing on the site even after clearing cache

Today I am editing the Articulate “VAPOR” theme installed in a hosted website. Initially I edited it from the Umbraco dashboard, save changes and tried to see the changes by refreshing the actual web site. But it didn’t work. I tried almost all other options, clear the cookies, restarted the application pool from the Plesk Admin Panel. Nothing work. Even though I have installed a previous version of Umbraco to a client, I am not sure if all .css files shown in the dashboard are directly reading from/ writing to the physical file or stored in the database.  Then to check that I connected to the site via my favourite FTP client WinSCP (I am not using the FileZilla any more.), and I can clearly see the changes I have made from the Umbraco admin dashboard are saved in to the actual file. Then as everyone does, I google-binged  the internet, and found that in several forums that so many people have the same issue with other  Umbraco versions and of course with some none Umbraco web sites as

Download a single folder or directory from a BRANCH in GitHub repo

How to download a single Branch folder from a GitHub repository aspnetcore/ ├── main/ │ ├── ....... │ ├── docs │ ├── ....... │ ├── src │ └── ....... └── release/2.2 |........... ├── docs ├── ......... └── src |........... └─── Templating |........... ├── src │ |........... │ ├── Microsoft.DotNet.Web.ProjectTemplates │ │ |........... │ │ └─── content │ │ |........... │ │ └── RazorPagesWeb-CSharp │ │ │ │........... ├ │........... I wanted to download a folder from the GitHub branch.  But how can we download only a folder (or part of the source), there is no option on the GitHub website to download a folder.  At the time of writing this easiest way to do this is to use the code sandbox.  Here is the magic Open repo to code sandbox by replacing github to githubbox in URL. Then on code sandbox go to files pai