Category: Microsoft
Category Archives: Microsoft
Trying to create Graph connector, can’t see menu options
I am trying to follow this microsoft tutuorial to create a graph connector: https://github.com/microsoftgraph/msgraph-sample-github-connector-python
I am a global admin in my own personal tenant (it is a paid subscription). The code in this repo creates a connection in azure, and I have no problem following the first part of it (the code successfully creates the connection, and I am able to create the schema for the connection.
The problem I have is that I can’t see the “Data Options” tab in my tenant.
Here is what the instructor sees:
here is what I see in my tenant:
Once again, I was able to create the schema for the connector via code, so I know it is there:
I am trying to follow this microsoft tutuorial to create a graph connector: https://github.com/microsoftgraph/msgraph-sample-github-connector-pythonI am a global admin in my own personal tenant (it is a paid subscription). The code in this repo creates a connection in azure, and I have no problem following the first part of it (the code successfully creates the connection, and I am able to create the schema for the connection. The problem I have is that I can’t see the “Data Options” tab in my tenant. Here is what the instructor sees:here is what I see in my tenant: Once again, I was able to create the schema for the connector via code, so I know it is there: Read More
Add a new Partition to a running CycleCloud SLURM cluster
Overview
Azure CycleCloud (CC) is a user-friendly platform that orchestrates High-Performance Computing (HPC) environments on Azure, enabling admins to set up infrastructure, job schedulers, filesystems and scale resources efficiently at any size. It’s designed for HPC administrators intent on deploying environments with specific schedulers.
SLURM, a widely-used HPC job scheduler, is notable for its open-source, scalable, fault-tolerant design, suitable for Linux clusters of any scale. SLURM manages user resources, workloads, accounting, monitoring, and supports parallel/distributed computing, organizing compute nodes into partitions.
This blog will specifically explain how to integrate a new partition into an active SLURM cluster within CycleCloud, without the need to terminate or restart the entire cluster.
Requirements/Versions:
CycleCloud Server (CC version used is 8.6.2)
Cyclecloud cli initialized on the CycleCloud VM
A Running Slurm Cluster
CycleCloud project used is 3.0.7
Slurm version used is 23.11.7-1
SSH and HTTPS access to CycleCloud VM
High Level Overview
Git clone the CC SLURM repo (not required if you already have a slurm template file)
Edit the Slurm template to add a new partition
Export parameters from the running SLURM cluster
Import the updated template file to the running cluster
Activate the new nodearray(s)
Update the cluster settings (VM size, core count, Image, etc)
Scale the cluster to create the nodes
Step 1: Git clone the CC SLURM repo
SSH into the CC VM and run the following commands:
sudo yum install -y git
git clone https://github.com/Azure/cyclecloud-slurm.git
cd cyclecloud-slurm/templates
ll
Step 2: Edit the SLURM template to add new partition(s)
Use your editor of choice (ie. vi, vim, Nano, VSCode remote, etc) to edit the “slurm.txt” template file:
cp slurm.txt slurm-part.txt
vim slurm-part.txt
The template file nodearray is the CC configuration unit that associates to a SLURM partition. There are 3 nodearrays defined in the default template:
hpc: tightly coupled MPI workloads with Infiniband (slurm.hpc = true)
htc: massively parallel throughput jobs w/o Infiniband (slurm.hpc = false)
dynamic: enables multiple VM types in the same partition
Choose the nodearray type for the new partition (hpc or htc) and duplicate the [[[nodearray …]]] config section. For example, to create a new nodearray named “GPU” based on the hpc nodearray (NOTE: hpc nodearray configs included for reference):
[[nodearray hpc]]
Extends = nodearraybase
MachineType = $HPCMachineType
ImageName = $HPCImageName
MaxCoreCount = $MaxHPCExecuteCoreCount
Azure.MaxScalesetSize = $HPCMaxScalesetSize
AdditionalClusterInitSpecs = $HPCClusterInitSpecs
EnableNodeHealthChecks = $EnableNodeHealthChecks
[[[configuration]]]
slurm.default_partition = true
slurm.hpc = true
slurm.partition = hpc
[[nodearray GPU]]
Extends = nodearraybase
MachineType = $GPUMachineType
ImageName = $GPUImageName
MaxCoreCount = $MaxGPUExecuteCoreCount
Azure.MaxScalesetSize = $HPCMaxScalesetSize
AdditionalClusterInitSpecs = $GPUClusterInitSpecs
EnableNodeHealthChecks = $EnableNodeHealthChecks
[[[configuration]]]
slurm.default_partition = false
slurm.hpc = true
slurm.partition = gpu
slurm.use_pcpu = false
NOTE: there can only be 1 “slurm.default_partition” and by default it is the HPC nodearray. Set the new one to false, or if you set it to true then change the HPC nodearray to false.
The “variables” in the nodearray config (ie. $GPUMachineType) are referred to as “Parameters” in CC. The Parameters are attributes exposed in the CC GUI to enable per cluster customization. Further down in the template file begins the Parameters configuration beginning with [parameters About] section. We need to add several configuration blocks throughout this section to correspond to the Parameters defined in the nodearray (ie. $GPUMachineType).
Add the GPUMachineType from HPCMachineType:
[[[parameter HPCMachineType]]]
Label = HPC VM Type
Description = The VM type for HPC execute nodes
ParameterType = Cloud.MachineType
DefaultValue = Standard_F2s_v2
[[[parameter GPUMachineType]]]
Label = GPU VM Type
Description = The VM type for GPU execute nodes
ParameterType = Cloud.MachineType
DefaultValue = Standard_F2s_v2
Add the GPUExecuteCoreCount from HPCExecuteCoreCount:
[[[parameter MaxHPCExecuteCoreCount]]]
Label = Max HPC Cores
Description = The total number of HPC execute cores to start
DefaultValue = 100
Config.Plugin = pico.form.NumberTextBox
Config.MinValue = 1
Config.IntegerOnly = true
[[[parameter MaxGPUExecuteCoreCount]]]
Label = Max GPU Cores
Description = The total number of GPU execute cores to start
DefaultValue = 100
Config.Plugin = pico.form.NumberTextBox
Config.MinValue = 1
Config.IntegerOnly = true
Add the GPUImageName from HPCImageName:
[[[parameter HPCImageName]]]
Label = HPC OS
ParameterType = Cloud.Image
Config.OS = linux
DefaultValue = almalinux8
Config.Filter := Package in {“cycle.image.centos7”, “cycle.image.ubuntu20”, “cycle.image.ubuntu22”, “cycle.image.sles15-hpc”, “almalinux8”}
[[[parameter GPUImageName]]]
Label = GPU OS
ParameterType = Cloud.Image
Config.OS = linux
DefaultValue = almalinux8
Config.Filter := Package in {“cycle.image.centos7”, “cycle.image.ubuntu20”, “cycle.image.ubuntu22”, “cycle.image.sles15-hpc”, “almalinux8”}
Add the GPUClusterInitSpecs from HPCClusterInitSpecs:
[[[parameter HPCClusterInitSpecs]]]
Label = HPC Cluster-Init
DefaultValue = =undefined
Description = Cluster init specs to apply to HPC execute nodes
ParameterType = Cloud.ClusterInitSpecs
[[[parameter GPUClusterInitSpecs]]]
Label = GPU Cluster-Init
DefaultValue = =undefined
Description = Cluster init specs to apply to GPU execute nodes
ParameterType = Cloud.ClusterInitSpecs
NOTE: Keep in mind that you can customize the “DefaultValue” for parameters as per your requirements, or alternatively, you can make changes directly within the CycleCloud graphical user interface.
Save the template file and exit (ie. :wq for vi/vim).
Step 3: Export parameters from the running SLURM cluster
You now have an updated SLURM template file to add a new GPU partition. The template will need to be “imported” into CycleCloud to overwrite the existing cluster definition. Before doing that, however, we need to export all the current cluster GUI parameter configs from the cluster into a local json file to use in the import process. Without this json file the cluster configs are all reset to the default values specified in the template file (and overwriting any customizations applied to the cluster in the GUI).
From the CycleCloud VM run the following command format:
cyclecloud export_parameters cluster_name > file_name.json
For my cluster the specific command is:
cyclecloud export_parameters jm-slurm-test > jm-slurm-test-params.json
cat jm-slurm-test-params.json
{
“UsePublicNetwork” : false,
“configuration_slurm_accounting_storageloc” : null,
“AdditionalNFSMountOptions” : null,
“About shared” : null,
“NFSSchedAddress” : null,
“loginMachineType” : “Standard_D8as_v4”,
“DynamicUseLowPrio” : false,
“configuration_slurm_accounting_password” : null,
“Region” : “southcentralus”,
“MaxHPCExecuteCoreCount” : 240,
“NumberLoginNodes” : 0,
“HTCImageName” : “cycle.image.ubuntu22”,
“MaxHTCExecuteCoreCount” : 10,
“AdditionalNFSExportPath” : “/data”,
“DynamicClusterInitSpecs” : null,
“About shared part 2” : null,
“HPCImageName” : “cycle.image.ubuntu22”,
“SchedulerClusterInitSpecs” : null,
“SchedulerMachineType” : “Standard_D4as_v4”,
“NFSSchedDiskWarning” : null,
…<truncated>
}
If the cyclecloud command does not work you may need to initialize the cli tool as described in the docs: https://learn.microsoft.com/en-us/azure/cyclecloud/how-to/install-cyclecloud-cli?view=cyclecloud-8#initialize-cyclecloud-cli
Step 4: Import the updated template file to the running cluster
To import the updated template to the running cluster in CycleCloud run the following command format:
cyclecloud import_cluster <cluster_name> -c Slurm -f <template file name> txt -p <parameter file name> –force
For my cluster the specific command is:
cyclecloud import_cluster jm-slurm-test -c Slurm -f slurm-part.txt -p jm-slurm-test-params.json –force
In the CycleCloud GUI we can now see the “gpu” nodearray has been added. Click on the “Arrays” tab in the middle panel as shown in the following screen capture:
The gpu nodearray is added to the cluster but it is not yet “Activated,” which means it is not yet available for use.
Step 5: Activate the new nodearray(s)
The cyclecloud start_cluster command will now kickstart the new nodearray activation using the following format:
cyclecloud start_cluster <cluster_name>
For my cluster the command is:
cyclecloud start_cluster jm-slurm-test
From the CycleCloud GUI we will see the gpu nodearray status will move to “Activation” and finally “Activated:”
Step 6: Update the cluster settings
Edit the cluster settings in the CycleCloud GUI to pick the “GPU VM Type” and “Max GPU Cores” in the “Required Settings” section:
Update the “GPU OS” and “GPU Cluster-Init” as needed in the “Advanced Settings” section:
Step 7: Scale the cluster to create the nodes
To this point we added the new nodearray to CycleCloud but SLURM does not yet know about the new GPU partition. We can see this from the scheduler VM with the sinfo command:
The final step is to “scale” the cluster to “pre-define” the compute nodes as needed by SLURM. The CycleCloud azslurm scale command will accomplish this:
Your cluster is now ready to use the new GPU partition.
SUMMARY
Adding a new partition to SLURM with Azure CycleCloud is a flexible and efficient way to update your cluster and leverage different types of compute nodes. You can follow the steps outlined in this article to create a new nodearray, configure the cluster settings, and scale the cluster to match the SLURM partition. By using CycleCloud and SLURM, you can optimize your cluster performance and resource utilization.
References:
CycleCloud Documentation
CycleCloud-SLURM Github repository
Microsoft Training for SLURM on Azure CycleCloud
Microsoft Tech Community – Latest Blogs –Read More
جـلـبـ الحبيبـ ” 27580 009733.402 ” أكبر شيخ روحاني 💢 البحرين ❣️ السعودية❣️ الإمارات ❣️ قطر ❣️ الكو
جـلـبـ الحبيبـ ” 27580 009733.402 ” أكبر شيخ روحاني :anger_symbol: البحرين :heavy_heart_exclamation: السعودية:heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمان
رد المطلقة
فك السحر
خواتم روحانية
معالج روحاني
شيخ روحاني
جـلـبـ الحبيبـ ” 27580 009733.402 ” أكبر شيخ روحاني :anger_symbol: البحرين :heavy_heart_exclamation: السعودية:heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمانرد المطلقةفك السحر خواتم روحانيةمعالج روحانيشيخ روحاني Read More
How to Extract Progress Percentages from Microsoft Project 2019 for an S-Curve?
Hello, everyone.
I have a schedule saved in Microsoft Project 2019 with the baseline set. I’m creating an S-curve in Excel that compares the planned progress percentage with the actual progress, as seen in the image. To simulate the percentages along the dates on the X-axis of the S-curve, I save the baseline in Microsoft Project and then manually update the status date to transfer the planned percentage for each date into Excel. The problem is that this process is… manual.
My question is: is there a way to extract a report from Microsoft Project that shows the progress percentages throughout the project? For example, if a project starts on August 10 and ends on August 15, the report needs to show something like this:
August 10: 0%
August 11: 16%
August 12: 42%
August 13: 65%
August 14: 88%
August 15: 100%
Hello, everyone. I have a schedule saved in Microsoft Project 2019 with the baseline set. I’m creating an S-curve in Excel that compares the planned progress percentage with the actual progress, as seen in the image. To simulate the percentages along the dates on the X-axis of the S-curve, I save the baseline in Microsoft Project and then manually update the status date to transfer the planned percentage for each date into Excel. The problem is that this process is… manual. My question is: is there a way to extract a report from Microsoft Project that shows the progress percentages throughout the project? For example, if a project starts on August 10 and ends on August 15, the report needs to show something like this: August 10: 0%August 11: 16%August 12: 42%August 13: 65%August 14: 88%August 15: 100% Read More
Splitting data in one cell into separate rows
Hi all,
I want to automatically split the 3rd column so that each row only has one number in the 3rd column. Is there a way to do this without manually splitting each row? I am currently doing it by manually dragging the rest of the data several rows down to create space for the new rows and then copying in the data.
Hi all, I want to automatically split the 3rd column so that each row only has one number in the 3rd column. Is there a way to do this without manually splitting each row? I am currently doing it by manually dragging the rest of the data several rows down to create space for the new rows and then copying in the data. Read More
Translate selected text
Hello
Since a few versions of Canary, I no longer have the option “translate to ……” in the context menu (right click) when a text of a different language is selected
A new feature (to activate) or a bug ?
Thanks
Hello Since a few versions of Canary, I no longer have the option “translate to ……” in the context menu (right click) when a text of a different language is selected A new feature (to activate) or a bug ? Thanks Read More
جلب الحبيب ٠ِ٠٩٧٣ِ٣ِ٣٧ِ٦٦٨٣ِ٦ رقم شيخ روحاني 🔴 السعودية | البحرين | الإمارات | قطر | الكويت | عُمان
جلب الحبيب ٠ِ٠٩٧٣ِ٣ِ٣٧ِ٦٦٨٣ِ٦ رقم شيخ روحاني :red_circle: السعودية | البحرين | الإمارات | قطر | الكويت | عُمان
جلب الحبيب ٠ِ٠٩٧٣ِ٣ِ٣٧ِ٦٦٨٣ِ٦ رقم شيخ روحاني :red_circle: السعودية | البحرين | الإمارات | قطر | الكويت | عُمان Read More
رقم: شيخ روحاني ٠٠ِ٩٦ِ٦٥٤٠٩ِ٦٦٩٨ِ٣ جلب الحبيب ❣️ السعودية ❣️ البحرين ❣️ الإمارات ❣️ قطر ❣️ الكويت
رقم: شيخ روحاني ٠٠ِ٩٦ِ٦٥٤٠٩ِ٦٦٩٨ِ٣ جلب الحبيب :heavy_heart_exclamation: السعودية :heavy_heart_exclamation: البحرين :heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمان
#جلب_الحبيب_السعودية #جلب_الحبيب #رد_المطلقة #فك_السحر #علاج_السحر #خواتم_روحانية #سحر_التفريق #رقم_شيخ_روحاني #رقم_معالج_روحاني #شيخ_روحاني #معالج_روحاني #فرج_الضبعة #عرق_السواحل #جلب_الحبيب_الكويت #جلب_الحبيب_قطر #جلب_الحبيب_البحرين #جلب_الحبيب_الإمارات #جلب_الحبيب_عمان #حل_الخلافات_الزوجية #رد_المطلقة_لزوجها #جلب_الحبيب_العنيد #جلب_الحبيب_بالقرآن #علاج_العقم #تسهيل_الزواج #زواج_البائر #زواج_العانس #جلب #الحبيب #جلبالحبيب #ردالمطلقة
رقم: شيخ روحاني ٠٠ِ٩٦ِ٦٥٤٠٩ِ٦٦٩٨ِ٣ جلب الحبيب :heavy_heart_exclamation: السعودية :heavy_heart_exclamation: البحرين :heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمان#جلب_الحبيب_السعودية #جلب_الحبيب #رد_المطلقة #فك_السحر #علاج_السحر #خواتم_روحانية #سحر_التفريق #رقم_شيخ_روحاني #رقم_معالج_روحاني #شيخ_روحاني #معالج_روحاني #فرج_الضبعة #عرق_السواحل #جلب_الحبيب_الكويت #جلب_الحبيب_قطر #جلب_الحبيب_البحرين #جلب_الحبيب_الإمارات #جلب_الحبيب_عمان #حل_الخلافات_الزوجية #رد_المطلقة_لزوجها #جلب_الحبيب_العنيد #جلب_الحبيب_بالقرآن #علاج_العقم #تسهيل_الزواج #زواج_البائر #زواج_العانس #جلب #الحبيب #جلبالحبيب #ردالمطلقة Read More
جلب الحبيب بإسمه 🔴 849264 555 00966 🟢 علاج سحر التفريق❣️ السعودية ❣️ البحرين ❣️ الإمارات ❣️ قطر
جلب الحبيب بإسمه :red_circle: 849264 555 00966 🟢 علاج سحر التفريق:heavy_heart_exclamation: السعودية :heavy_heart_exclamation: البحرين :heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمان
رد المطلقة
فك السحر
رقم شيخ روحاني
رقم معالج روحاني
جلب الحبيب بإسمه :red_circle: 849264 555 00966 🟢 علاج سحر التفريق:heavy_heart_exclamation: السعودية :heavy_heart_exclamation: البحرين :heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمانرد المطلقةفك السحررقم شيخ روحانيرقم معالج روحاني Read More
جلب الحبيب بالبحرين (0290979 0096654 ) رد المطلقة الإمارات علاج سحر التفريق❣️ السعودية❣️ الإمارات ❣️
جلب الحبيب بالبحرين (0290979 0096654 ) رد المطلقة الإمارات علاج سحر التفريق:heavy_heart_exclamation: السعودية:heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمان
فك السحر
رقم شيخ روحاني
رقم معالج روحاني
جلب الحبيب بالبحرين (0290979 0096654 ) رد المطلقة الإمارات علاج سحر التفريق:heavy_heart_exclamation: السعودية:heavy_heart_exclamation: الإمارات :heavy_heart_exclamation: قطر :heavy_heart_exclamation: الكويت :heavy_heart_exclamation: عُمانفك السحررقم شيخ روحانيرقم معالج روحاني Read More
Outlook Shared Calendar (won’t allow editing)
At my work, we use a shared Outlook Calendar. We used it all last year with no problems until May. In June we suddenly lost the ability to edit a calendar entry (ie change the time, date, info, etc.). We deleted the entire calendar and created a brand new one. We tried to edit a calendar entry and ran into the same issue. All share settings have been checked and are set to allow editing. Here is the error message we get when we try to edit a calendar entry. Any ideas?
At my work, we use a shared Outlook Calendar. We used it all last year with no problems until May. In June we suddenly lost the ability to edit a calendar entry (ie change the time, date, info, etc.). We deleted the entire calendar and created a brand new one. We tried to edit a calendar entry and ran into the same issue. All share settings have been checked and are set to allow editing. Here is the error message we get when we try to edit a calendar entry. Any ideas? Read More
Version 127 forces MSA sync log out at random
After Edge updated to version 127, it forces Edge to be logged out. Mostly after sleep.
The browser is set to cleanup after close, but I am still logged in after starting it again.
The log out is random or probably after sleep, because it takes some time?
The process is closed after exiting, no sidebar, maybe it does not like it?
I have MS 365 Basic account and Windows 10.0.26100.1301
After Edge updated to version 127, it forces Edge to be logged out. Mostly after sleep.The browser is set to cleanup after close, but I am still logged in after starting it again.The log out is random or probably after sleep, because it takes some time?The process is closed after exiting, no sidebar, maybe it does not like it?I have MS 365 Basic account and Windows 10.0.26100.1301 Read More
Connections with Microsoft SQL Server are 5 times slower on Linux compared to Windows
Hi people,
I have a big problem with MICROSOFT SQL FROM KUBERNETES
I have setup my entire cluster.
I thought everything is working fine, then observed that all the api calls are very slow..
SETUP:
My cluster with services is running in my office server room, and i have microsoft sql server running on windows machine just beside it.
Now my requests to that sql server are 5-6x slower than my earlier setup where, requests used to go from services running on IIS on windows machine to MS sql server running on windows.
i ran profiler and saw that
pyodbc.connect is taking 90% of the time
The query which is taking 500ms to be executed on windows machine is taking 5.2seconds out of which 4.46 is consumed by pyodbc.connect
PLEASE HELP
Hi people,I have a big problem with MICROSOFT SQL FROM KUBERNETESI have setup my entire cluster.I thought everything is working fine, then observed that all the api calls are very slow..SETUP:My cluster with services is running in my office server room, and i have microsoft sql server running on windows machine just beside it.Now my requests to that sql server are 5-6x slower than my earlier setup where, requests used to go from services running on IIS on windows machine to MS sql server running on windows.i ran profiler and saw thatpyodbc.connect is taking 90% of the timeThe query which is taking 500ms to be executed on windows machine is taking 5.2seconds out of which 4.46 is consumed by pyodbc.connectPLEASE HELP Read More
ردالمطلقة و جلب الحبيب🟢 ٩ٍ٧٣ٍْ٣ْ٤ْ٣٢ٍ٤ْ٩٣ٍ٥ ٠َ٠🟢رقم شيخ روحاني ، الكويت | قطر | البحرين | الإمارات
ردالمطلقة و جلب الحبيب🟢 ٩ٍ٧٣ٍْ٣ْ٤ْ٣٢ٍ٤ْ٩٣ٍ٥ ٠َ٠🟢رقم شيخ روحاني ، الكويت | قطر | البحرين | الإمارات | عُمان | السعودية
ردالمطلقة و جلب الحبيب🟢 ٩ٍ٧٣ٍْ٣ْ٤ْ٣٢ٍ٤ْ٩٣ٍ٥ ٠َ٠🟢رقم شيخ روحاني ، الكويت | قطر | البحرين | الإمارات | عُمان | السعودية Read More
روحاني جلب الحبيب💞 -٩ِ٦ِ٦ِْ٥ِ٥٥ِْ٨ِْ٤ِ٩ِ٢ِِ٦ِ٤ ٠َ٠ -💞تلفون شيخ روحاني
روحاني جلب الحبيب:revolving_hearts: -٩ِ٦ِ٦ِْ٥ِ٥٥ِْ٨ِْ٤ِ٩ِ٢ِِ٦ِ٤ ٠َ٠ -:revolving_hearts:تلفون شيخ روحاني
روحاني جلب الحبيب:revolving_hearts: -٩ِ٦ِ٦ِْ٥ِ٥٥ِْ٨ِْ٤ِ٩ِ٢ِِ٦ِ٤ ٠َ٠ -:revolving_hearts:تلفون شيخ روحاني Read More
What are the possible reasons for the decrease in copying speed?
I am transferring MR backup images from an NVMe drive to an external SSD connected via USB. I am curious about the sudden decrease in copying speed that occurs at a certain stage of the multiple image copying process. Understanding the root cause of this issue may enable me to address it. I have observed this speed drop during recent backups from internal to external storage.
I am transferring MR backup images from an NVMe drive to an external SSD connected via USB. I am curious about the sudden decrease in copying speed that occurs at a certain stage of the multiple image copying process. Understanding the root cause of this issue may enable me to address it. I have observed this speed drop during recent backups from internal to external storage. Read More
Adding a language pack in Powershell 7: A guide
To enable Chinese (Traditional, Taiwan) language and keyboard pinyin input in Powershell, you can utilize the following steps:
1. Open Powershell with administrator privileges.
2. Run the following command to install the required language pack:
“`powershell
Add-WindowsCapability -Online -Name Language.Basic~~~zh-TW~0.0.1.0
“`
3. Next, set the default input method to keyboard pinyin for Chinese (Traditional, Taiwan) language:
“`powershell
Set-WinUILanguageOverride -Language zh-TW
Set-WinUserLanguageList -LanguageList zh-TW -force
“`
4. Restart your computer to apply the changes.
5. Once your system restarts, you should be able to switch to Chinese (Traditional, Taiwan) language and use the keyboard pinyin input method in Powershell or any other application.
By following these steps, you can easily add Chinese (Traditional, Taiwan) language support with keyboard pinyin input in Powershell.
To enable Chinese (Traditional, Taiwan) language and keyboard pinyin input in Powershell, you can utilize the following steps: 1. Open Powershell with administrator privileges.2. Run the following command to install the required language pack: “`powershell Add-WindowsCapability -Online -Name Language.Basic~~~zh-TW~0.0.1.0 “`3. Next, set the default input method to keyboard pinyin for Chinese (Traditional, Taiwan) language: “`powershell Set-WinUILanguageOverride -Language zh-TW Set-WinUserLanguageList -LanguageList zh-TW -force “`4. Restart your computer to apply the changes.5. Once your system restarts, you should be able to switch to Chinese (Traditional, Taiwan) language and use the keyboard pinyin input method in Powershell or any other application. By following these steps, you can easily add Chinese (Traditional, Taiwan) language support with keyboard pinyin input in Powershell. Read More
Run flow from Sharepoint Page
Hello,
I have a flow that runs for files selected in the Document Library using JSON formatting, but I am trying to run the same flow from a SharePoint page, with the Document Library added as a web part
{
“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json“,
“elmType”: “button”,
“customRowAction”: {
“action”: “executeFlow”,
“actionParams”: “{“id”: “edf627d9-20f4-45ba-8bc9-4494bf2ff1be”}”
},
“attributes”: {
“class”: “ms-fontColor-themePrimary ms-fontColor-themeDarker–hover”
},
“style”: {
“border”: “none”,
“background-color”: “transparent”,
“cursor”: “pointer”
},
“children”: [
{
“elmType”: “span”,
“attributes”: {
“iconName”: “Flow”
},
“style”: {
“padding-right”: “6px”
}
},
{
“elmType”: “span”,
“txtContent”: “It’s Flow Time!”
}
]
}
Hello, I have a flow that runs for files selected in the Document Library using JSON formatting, but I am trying to run the same flow from a SharePoint page, with the Document Library added as a web part {“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json”,”elmType”: “button”,”customRowAction”: {“action”: “executeFlow”,”actionParams”: “{“id”: “edf627d9-20f4-45ba-8bc9-4494bf2ff1be”}”},”attributes”: {“class”: “ms-fontColor-themePrimary ms-fontColor-themeDarker–hover”},”style”: {“border”: “none”,”background-color”: “transparent”,”cursor”: “pointer”},”children”: [{“elmType”: “span”,”attributes”: {“iconName”: “Flow”},”style”: {“padding-right”: “6px”}},{“elmType”: “span”,”txtContent”: “It’s Flow Time!”}]} Read More
Locating Version and Build Number from a Windows ISO File
Dear Kasinath,
I would appreciate it if you could provide guidance on how to identify the version and build number of the Windows 11 ISO file that was downloaded from the Microsoft download site.
Thank you.
Dear Kasinath, I would appreciate it if you could provide guidance on how to identify the version and build number of the Windows 11 ISO file that was downloaded from the Microsoft download site. Thank you. Read More
What are some alternatives to Google Tasks?
Could you recommend some other apps similar to Google Tasks or Microsoft To Do that offer the functionality of setting reminders to alert you on the day of the task via popular platforms like Gmail, Windows Calendar, or Android? I find it frustrating that these apps don’t have this feature, and I’d like a solution where I can receive notifications about my tasks on the day they are due, whether on my phone or Windows devices.
Could you recommend some other apps similar to Google Tasks or Microsoft To Do that offer the functionality of setting reminders to alert you on the day of the task via popular platforms like Gmail, Windows Calendar, or Android? I find it frustrating that these apps don’t have this feature, and I’d like a solution where I can receive notifications about my tasks on the day they are due, whether on my phone or Windows devices. Read More