Posts

How to Enable or Disable the "Show More Options" Menu on Windows 11?

Title: How to Enable or Disable the "Show More Options" Menu on Windows 11 Introduction: As users explore Windows 11, some may feel nostalgic while others may have concerns about certain user interface choices made by Microsoft. One particular UI change that has raised questions is the hiding of the old right-click menu under the "Show more Options" option. In this blog post, we will guide you through the process of enabling or disabling the "Show More Options" menu on Windows 11. Understanding the Context: While the new context menu design in Windows 11 offers a cleaner aesthetic, it can be confusing for many users. Notably, familiar options like Refresh or the ability to create folders are no longer readily available when right-clicking on the desktop in Windows 11. Although you can access the old classic menu temporarily by using Shift + right-click, it's not a permanent solution. To regain access to the original right-click menu, you can follow the...

Bypass SSL certificate check for Apache Axis2 client

For some reason, I wanted to totally ignore the certificate and trust store check with my Axis2 client stub implementations and I was looking for the solution. I came across a lot of articles which states about using  HttpsURLConnection to disable SSL check, but the problem is underlying Axis2 client doesn’t use the  HttpsURLConnection  Solution: We can use that TrustManager to create an SSLContext which trust all the servers. SSLContext sslCtx = SSLContext . getInstance ( "TLS" ); sslCtx . init ( null , new TrustManager [] { new TrustAllTrustManager ()}, null ); APIStub client = new APIStub ( url ); client . _getServiceClient (). getOptions (). setProperty ( HTTPConstants . CUSTOM_PROTOCOL_HANDLER , new Protocol ( "https" , (ProtocolSocketFactory) new SSLProtocolSocketFactory ( sslCtx ), 443 ));

How to import Sticky Notes from Windows 7 to Windows 10

Scenario: I have upgraded from windows 7 to window 10 Pre-Anniversary Update(latest version 1709). Now I want to Import Sticky Notes which I have backup before the upgrade. Windows 7 has  StickyNotes.snt  which we need to convert to  plum.sqlite . So it's not easy like we used to do by replacing  StickyNotes.snt  at C:\Users\\AppData\Roaming\Microsoft\Sticky Notes\StickyNotes.snt Solution If you haven't open Sticky notes app on your machine before, then you can directly start from  step5 . Go to Apps & Features Search & Select Sticky Notes and click on the Advance option Click on Reset, Which will delete all data Now do not open Sticky Notes app Navigate to  %LOCALAPPDATA%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbw\LocalState Some user might have different Package here  Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe Create a new folder  Legacy  inside  LocalState Place your  StickyNotes.snt ...

How to configure Gitblit Federation

There are two ways to sync your reposittory PULL from Repository  Federation PUSH to Repository  PUSH Groovy Script Federation Steps Gitblit-Federation-Configuration You can configure federation on Gitblit instance to keep then sync.One Gitblit instance keep in sync with other instance. Requirements About Gitblit Federation Origin Gitblit Instance Requirements Configuring federation.passphrase Pulling Gitblit Instance Requirement Controlling What Gets Pulled From Origin Instance Controlling What Gets Pulled At Pulling Instance Federation Pull Registration Kyes Last Step To Sync Repository Copy Repository Using Cron Job Requirements • Two standalone Gitblit server About Gitblit Federation A Gitblit federation is a mechanism to clone repositories and keep them in sync from one Gitblit instance to another. If your Gitblit instance allows federation and it is properly registered with another Gitblit instance, each of the non-excluded repositories of...

[Solved] Unable to load groups on Fiori Launchpad with error "Invalid URI segment 'PageSets(''"

"Failure - Unable to load groups" and in the HTTP trace you get error "400 Bad Request" While accessing  Fiori Launchpad  from Apache Reverse Proxy, you get the error in browser  Unable to load groups , and your application will not open. You can see below-mentioned request getting failed. Request: /sap/opu/odata/UI2/PAGE_BUILDER_PERS/PageSets('%2FUI2%2FFiori2LaunchpadHome')?$expand=Pages/PageChipInstances/Chip/ChipBags/ChipProperties,Pages/PageChipInstances/RemoteCatalog,Pages/PageChipInstances/ChipInstanceBags/ChipInstanceProperties,AssignedPages,DefaultPage In the response of the request, you can see the message:  Invalid URI segment 'PageSets('' However, if you use intranet (without any Reverse Proxy), the Fiori Launchpad can be loaded properly. Root cause: When we use Apache proxy, the reverses proxy automatically decodes the entire URL before forwarding the request to the backend. '%2F' is decoded to '/'. ...

Configure Apache Virtual Hosts - CentOS 7

Configure Apache Virtual Hosts - CentOS 7 This article shows you   how to install and setup Apache web server , which can point to your backend Application server using proxy Install the Apache web server Update your packages on centos sudo yum update Install Apache sudo yum install httpd Start the service sudo service httpd start Set up Apache server Apache can be configured by  httpd.conf  file, which also includes all files present under  conf.d  folder, so let's create  .conf  file under  conf.d  folder sudo vim /etc/httpd/conf.d/webserver.conf Past the code and change configuration based on your requirement, here I need to call App server on HTTPS also don't want SSL handshake. <VirtualHost *:80> ServerAdmin email@example.com ServerName www.example.com ServerAlias example.com SSLProxyEngine On SSLProxyEngine on SSLProxyVerify none SSLProxyCheckPeerCN off SSLPro...