Category: Microsoft
Category Archives: Microsoft
SharePoint Drag and Drop default behavior has changed
When I drag and drop files in SharePoint, (in the same library) the files are now copying by default, they used to Move by default. I tried pressing the Ctrl Key while dragging in an attempt to move the file but it still copied.
Using Edge Version 125.0.2535.79 (Official build) (64-bit).
When I drag and drop files in SharePoint, (in the same library) the files are now copying by default, they used to Move by default. I tried pressing the Ctrl Key while dragging in an attempt to move the file but it still copied. Using Edge Version 125.0.2535.79 (Official build) (64-bit). Read More
Remove groups from a user with an exception
Hey,
I am trying to remove a number of users from all of their group memberships, with the exception of one group. I’ve been working on this for an hour or so and hit a stumbling block:
$username=”User01″
$groupdntoexclude=(get-adgroup “group 1”).distuishedname
get-aduser -identity $username -properties MemberOf | where-object -ne $groupdntoexclude | for-eachObject { $_.MemberOf | remove-adgroupmember -members $username -confirm:$true}
So far all I seem to be able to do is remove the user for every group. I’ve tried playing around with the Where-Object conditions but can’t quite get it right. Any suggestions would be greatly appreciated!
Thanks,
Matt
Hey, I am trying to remove a number of users from all of their group memberships, with the exception of one group. I’ve been working on this for an hour or so and hit a stumbling block: $username=”User01″
$groupdntoexclude=(get-adgroup “group 1”).distuishedname
get-aduser -identity $username -properties MemberOf | where-object -ne $groupdntoexclude | for-eachObject { $_.MemberOf | remove-adgroupmember -members $username -confirm:$true} So far all I seem to be able to do is remove the user for every group. I’ve tried playing around with the Where-Object conditions but can’t quite get it right. Any suggestions would be greatly appreciated! Thanks,Matt Read More
Shareing OneDrive Folder location with colleagues
Hi There,
I’m Looking for some guidance on best practice for sharing a OneDrive folder location with colleagues.
I would like them to be able to add the shared folder (and therefore be able to access the sub-folders and files contained there within) to their own OneDrive app on their desktop so they have an as close to ‘as if on their C-drive’ experience as possible.
However I would also like to retain control of the folder (and sub-folders / files within) so my colleagues do not have the ability to change these files.
To add detail to this, there are some sub-folders and files that I will need to allow my colleagues to make copies of to their individual project work folders.
However there are other folders / files where I would like them to be able to read the files but not have read/wright access.
Can this be achieved with OneDrive (for Business)?!
Many thanks.
Hi There, I’m Looking for some guidance on best practice for sharing a OneDrive folder location with colleagues. I would like them to be able to add the shared folder (and therefore be able to access the sub-folders and files contained there within) to their own OneDrive app on their desktop so they have an as close to ‘as if on their C-drive’ experience as possible. However I would also like to retain control of the folder (and sub-folders / files within) so my colleagues do not have the ability to change these files. To add detail to this, there are some sub-folders and files that I will need to allow my colleagues to make copies of to their individual project work folders. However there are other folders / files where I would like them to be able to read the files but not have read/wright access. Can this be achieved with OneDrive (for Business)?! Many thanks. Read More
Using Cohere Binary Embeddings in Azure AI Search and Command R/R+ Model via Azure AI Studio
In April 2024, we proudly announced our partnership with Cohere, allowing customers to seamlessly leverage Cohere models via the Azure AI Studio Model Catalog, as part of the Models as a Service (MaaS) offering. At Build 2024, Azure AI Search launched support for Binary Vectors. In this blog, we are excited to continue from our previous discussion on int8 embeddings and highlight two powerful new capabilities: utilizing Cohere Binary Embeddings in Azure AI Search for optimized storage and search, and employing the Cohere Command R+ model as a Large Language Model (LLM) for Retrieval-Augmented Generation (RAG).
Cohere Binary Embeddings via Azure AI Studio
Binary vector embeddings use a single bit per dimension, making them much more compact than vectors using floats or int8, while still yielding surprisingly good quality given the size reduction. Cohere’s binary embeddings offer substantial efficiency, enabling you to store and search vast datasets more cost-effectively. This capability can achieve significant memory reduction, allowing more vectors to fit within Azure AI Search units or enabling the use of lower SKUs, thus improving cost efficiency and supporting larger indexes.
“Cohere’s binary embeddings available in Azure AI Search provide a powerful combination of memory efficiency and search quality, ideal for advanced AI applications.” – Nils Reimers, Cohere’s Director of Machine Learning.
With int8 and binary embeddings, customers can achieve up to a 32x reduction in vector size under optimal conditions, translating to improved cost efficiency and the ability to handle larger datasets. Read the full announcement from Cohere here: Cohere int8 & binary Embeddings – Scale Your Vector Database to Large Datasets
Cohere Command R+ Model for RAG
The Cohere Command R+ model is a state-of-the-art language model that can be used for Retrieval-Augmented Generation (RAG). This approach combines retrieval of relevant documents with the generation capabilities of the model, resulting in more accurate and contextually relevant responses.
Step-by-Step Guide
Here’s how you can use Cohere Binary Embeddings and the Command R model via Azure AI Studio:
Install Required Libraries
First, install the necessary libraries, including the Azure Search Python SDK and Cohere Python SDK.
pip install –pre azure-search-documents
pip install azure-identity cohere python-dotenv
Set Up Cohere and Azure AI Search Credentials
Set up your credentials for both Cohere and Azure AI Search. For this walkthrough, we’ll use Cohere Deployed Models in Azure AI Studio. However, you can also use the Cohere API directly.
import os
import cohere
from azure.core.credentials import AzureKeyCredential
from azure.identity import DefaultAzureCredential
from azure.search.documents import SearchClient
from azure.search.documents.indexes import SearchIndexClient
from azure.search.documents.indexes.models import SearchIndex, SearchField, SimpleField, VectorSearch, VectorSearchProfile, HnswAlgorithmConfiguration, HnswParameters, VectorEncodingFormat, VectorSearchAlgorithmKind, VectorSearchAlgorithmMetric, AzureMachineLearningVectorizer, AzureMachineLearningParameters
from dotenv import load_dotenv
load_dotenv()
# Azure AI Studio Cohere Configuration
AZURE_AI_STUDIO_COHERE_EMBED_KEY = os.getenv(“AZURE_AI_STUDIO_COHERE_EMBED_KEY”)
AZURE_AI_STUDIO_COHERE_EMBED_ENDPOINT = os.getenv(“AZURE_AI_STUDIO_COHERE_EMBED_ENDPOINT”)
AZURE_AI_STUDIO_COHERE_COMMAND_KEY = os.getenv(“AZURE_AI_STUDIO_COHERE_COMMAND_KEY”)
AZURE_AI_STUDIO_COHERE_COMMAND_ENDPOINT = os.getenv(“AZURE_AI_STUDIO_COHERE_COMMAND_ENDPOINT”)
# Index Names
INT8_INDEX_NAME = “cohere-embed-v3-int8”
BINARY_INDEX_NAME = “cohere-embed-v3-binary”
# Azure Search Service Configuration
SEARCH_SERVICE_API_KEY = os.getenv(“AZURE_SEARCH_ADMIN_KEY”)
SEARCH_SERVICE_ENDPOINT = os.getenv(“AZURE_SEARCH_SERVICE_ENDPOINT”)
# Create a Cohere client using the AZURE_AI_STUDIO_COHERE_API_KEY and AZURE_AI_STUDIO_COHERE_ENDPOINT from Azure AI Studio
cohere_azure_client = cohere.Client(
base_url=f”{AZURE_AI_STUDIO_COHERE_EMBED_ENDPOINT}/v1″,
api_key=AZURE_AI_STUDIO_COHERE_EMBED_KEY
)
Generate Embeddings using Azure AI Studio
Use the Cohere Embed API via Azure AI Studio to generate binary and int8 embeddings for your documents.
def generate_embeddings(texts, input_type=”search_document”, embedding_type=”ubinary”):
model = “embed-english-v3.0”
texts = [texts] if isinstance(texts, str) else texts
response = cohere_azure_client.embed(
texts=texts,
model=model,
input_type=input_type,
embedding_types=[embedding_type],
)
return [embedding for embedding in getattr(response.embeddings, embedding_type)]
# Example usage
documents = [“Alan Turing was a pioneering computer scientist.”, “Marie Curie was a groundbreaking physicist and chemist.”]
binary_embeddings = generate_embeddings(documents, embedding_type=”ubinary”)
int8_embeddings = generate_embeddings(documents, embedding_type=”int8″)
Create an Azure AI Search Index
Create an Azure AI Search index to store the embeddings. Note, that Azure AI Search only supports unsigned binary at this time.
def create_or_update_index(client, index_name, vector_field_type, scoring_uri, authentication_key, model_name):
fields = [
SimpleField(name=”id”, type=SearchFieldDataType.String, key=True),
SearchField(name=”text”, type=SearchFieldDataType.String, searchable=True),
SearchField(
name=”embedding”,
type=vector_field_type,
vector_search_dimensions=1024,
vector_search_profile_name=”my-vector-config”,
hidden=False,
stored=True,
vector_encoding_format=(
VectorEncodingFormat.PACKED_BIT if vector_field_type == “Collection(Edm.Byte)” else None
),
),
]
vector_search = VectorSearch(
profiles=[VectorSearchProfile(name=”my-vector-config”, algorithm_configuration_name=”my-hnsw”)],
algorithms=[HnswAlgorithmConfiguration(name=”my-hnsw”, kind=VectorSearchAlgorithmKind.HNSW, parameters=HnswParameters(metric=VectorSearchAlgorithmMetric.COSINE if vector_field_type == “Collection(Edm.SByte)” else VectorSearchAlgorithmMetric.HAMMING))]
)
index = SearchIndex(name=index_name, fields=fields, vector_search=vector_search)
client.create_or_update_index(index=index)
# Example usage
search_index_client = SearchIndexClient(endpoint=search_service_endpoint, credential=credential)
create_or_update_index(search_index_client, “binary-embedding-index”, “Collection(Edm.Byte)”, AZURE_AI_STUDIO_COHERE_EMBED_ENDPOINT, AZURE_AI_STUDIO_COHERE_EMBED_KEY, “embed-english-v3.0”)
create_or_update_index(search_index_client, “int8-embedding-index”, “Collection(Edm.SByte)”, AZURE_AI_STUDIO_COHERE_EMBED_ENDPOINT, AZURE_AI_STUDIO_COHERE_EMBED_KEY, “embed-english-v3.0”)
Index Documents and Embeddings
Index the documents along with their embeddings into Azure AI Search.
def index_documents(search_client, documents, embeddings):
documents_to_index = [{“id”: str(idx), “text”: doc, “embedding”: emb} for idx, (doc, emb) in enumerate(zip(documents, embeddings))]
search_client.upload_documents(documents=documents_to_index)
# Example usage
search_client_binary = SearchClient(endpoint=search_service_endpoint, index_name=”binary-embedding-index”, credential=credential)
search_client_int8 = SearchClient(endpoint=search_service_endpoint, index_name=”int8-embedding-index”, credential=credential)
index_documents(search_client_binary, documents, binary_embeddings)
index_documents(search_client_int8, documents, int8_embeddings)
Perform a Vector Search
Use the Azure AI Search client to perform a vector search using the generated embeddings.
def perform_vector_search(search_client, query, embedding_type=”ubinary”):
query_embeddings = generate_embeddings(query, input_type=”search_query”, embedding_type=embedding_type)
vector_query = VectorizableTextQuery(text=query, k_nearest_neighbors=3, fields=”embedding”)
results = search_client.search(search_text=None, vector_queries=[vector_query])
for result in results:
print(f”Text: {result[‘text’]}”)
print(f”Score: {result[‘@search.score’]}n”)
# Example usage
perform_vector_search(search_client_binary, “pioneers in computer science”, embedding_type=”ubinary”)
perform_vector_search(search_client_int8, “pioneers in computer science”, embedding_type=”int8″)
Int8 Results:
Title: Alan Turing was an English mathematician, computer scientist, logician, cryptanalyst, philosopher, and theoretical biologist.
Score: 0.6225287
Title: Albert Einstein was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.
Score: 0.5917698
Title: Isaac Newton was an English polymath active as a mathematician, physicist, astronomer, alchemist, theologian, and author who was described in his time as a natural philosopher.
Score: 0.5746157
Binary Results:
Title: Alan Turing was an English mathematician, computer scientist, logician, cryptanalyst, philosopher, and theoretical biologist.
Score: 0.002610966
Title: Albert Einstein was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.
Score: 0.0024509805
Title: Isaac Newton was an English polymath active as a mathematician, physicist, astronomer, alchemist, theologian, and author who was described in his time as a natural philosopher.
Score: 0.0023980816
Ground the Results to Cohere Command R+ for RAG
Use the Cohere Command R+ model to generate a response based on the retrieved documents.
# Create a Cohere client for Command R+
co_chat = cohere.Client(
base_url=f”{AZURE_AI_STUDIO_COHERE_COMMAND_ENDPOINT}/v1″, api_key=AZURE_AI_STUDIO_COHERE_COMMAND_KEY
)
# Extract the documents from the search results
documents_binary = [{“text”: result[“text”]} for result in results_binary]
# Ground the documents from the “binary” index
chat_response_binary = co_chat.chat(
message=query, documents=documents_binary, max_tokens=100
)
print(chat_response_binary.text)
Binary Results:
There are many foundational figures who have made significant contributions to the field of computer science. Here are some of the most notable individuals:
1. Alan Turing: Often considered the “father of computer science,” Alan Turing was a British mathematician and computer scientist who made groundbreaking contributions to computing, cryptography, and artificial intelligence. He is widely known for his work on the Turing machine, a theoretical device that served as a model for modern computers, and for his crucial role in breaking German Enigma codes during World War II.
2. Albert Einstein: Known for his theory of relativity and contributions to quantum mechanics, Albert Einstein was a German-born physicist whose work had a profound impact on the development of modern physics. His famous equation, E=mc^2, has become one of the most well-known scientific formulas in history.
3. Isaac Newton: An English mathematician, physicist, and astronomer, Isaac Newton is widely recognized for his laws of motion and universal gravitation. His work laid the foundation for classical mechanics and significantly advanced the study of optics and calculus.
Full Notebook
Find the full notebook with all the code and examples here.
Getting Started
Azure AI Search Documentation:
Learn more about setting up and using Azure AI Search.
Dive into the specifics of Binary Vectors in Azure AI Search.
Cohere Documentation:
Explore how to integrate Cohere models via Cohere’s API.
Learn how to install and use the Cohere Python SDK and how to deploy the Cohere Embed Model-As-A-Service with Azure AI Studio.
Additional Resources:
Learn more about indexing binary vector types.
Explore the latest features of Azure AI Search.
Start creating a search service in the Azure Portal, Azure CLI, the Management REST API, ARM template, or a Bicep file.
By integrating Cohere Binary Embeddings and the Command R/R+ model into your Azure AI workflow, you can significantly enhance the performance and scalability of your AI applications, providing faster, more efficient, and contextually relevant results.
Microsoft Tech Community – Latest Blogs –Read More
Send Notify Email after grant permission access to folder via API
Hello there. (sorry for bad English)
i have been develop a web application base on vue js. that can grant permission to user who are in template excel file. so a problem is, i wonder if there are a way to send notify email like when manual grant access with vue js.
Thanks.
Hello there. (sorry for bad English)i have been develop a web application base on vue js. that can grant permission to user who are in template excel file. so a problem is, i wonder if there are a way to send notify email like when manual grant access with vue js.Thanks. Read More
Update from Windows Insider Release Preview 24H2 to DEV channel
I’m trying to switch from the Windows Insider Release Preview (24H2) to the DEV channel, but I’m having trouble figuring out the process. I’ve tried searching for instructions online, but I’m not sure what steps I need to take to make the transition. I’ve tried going to the Windows Update settings, but I’m not seeing any option to switch channels. I’ve also tried using the “Settings” app to update my build, but it’s not allowing me to switch to the DEV channel.
Can anyone provide a step-by-step guide on how to switch from the Release Preview channel to the DEV channel? Are there any specific settings or configurations that I need to change?
I’m trying to switch from the Windows Insider Release Preview (24H2) to the DEV channel, but I’m having trouble figuring out the process. I’ve tried searching for instructions online, but I’m not sure what steps I need to take to make the transition. I’ve tried going to the Windows Update settings, but I’m not seeing any option to switch channels. I’ve also tried using the “Settings” app to update my build, but it’s not allowing me to switch to the DEV channel.Can anyone provide a step-by-step guide on how to switch from the Release Preview channel to the DEV channel? Are there any specific settings or configurations that I need to change? Read More
Connection error 0x83886167
I’m facing an error when trying to connect users to a workplace machine in a host poll.
It used to work before, but now it is displaying this error:
Error code: 0x83886167
Extended error code: 0x0
Activity Id: ID {b0080e8e-1357-493a-88b7-eb95bf1f0000}
Does anyone knows how to solve this?
I’m facing an error when trying to connect users to a workplace machine in a host poll.It used to work before, but now it is displaying this error:Error code: 0x83886167Extended error code: 0x0Activity Id: ID {b0080e8e-1357-493a-88b7-eb95bf1f0000}Does anyone knows how to solve this? Read More
Sharepoint list create and edit access
Hi, Let me explain my use case.
I’m building a Power Apps App to fill in different forms. This App is used company-wide. Because Power Apps are new to my company a SharePoint Site has been created to store all the data. Inside this site, there is currently, 1 list (Database) to view, create, and edit items. All the users need to have these permissions. I’ve edited the contributor role and deleted the “edit items” property. This is because the users with this property enabled can edit my site page.
To overcome this I’ve added the user group for the whole company to the list. Gave the group the edit items access and it should work. The problem is that the permissions change to “Can’t download” User can view but can’t download. I can create and delete but can’t edit the items.
Or I want to restrict the users from editing the page, or want to give the group edit access.
How can I fix this issue?
Hi, Let me explain my use case. I’m building a Power Apps App to fill in different forms. This App is used company-wide. Because Power Apps are new to my company a SharePoint Site has been created to store all the data. Inside this site, there is currently, 1 list (Database) to view, create, and edit items. All the users need to have these permissions. I’ve edited the contributor role and deleted the “edit items” property. This is because the users with this property enabled can edit my site page. To overcome this I’ve added the user group for the whole company to the list. Gave the group the edit items access and it should work. The problem is that the permissions change to “Can’t download” User can view but can’t download. I can create and delete but can’t edit the items. Or I want to restrict the users from editing the page, or want to give the group edit access.How can I fix this issue? Read More
How can I convert a YouTube Playlist to MP3 on my Windows Computer
I recently discovered a YouTube channel with a lot of non-copyrighted instrumental music that I really enjoy. The channel states that all the music is non-copyright, so I can freely download the videos to my computer for offline listening. However, I don’t have a YouTube Premium subscription, and the download options provided by YouTube Premium are not what I’m looking for.
I would like to convert the entire playlist of these music videos to MP3 format so I can download them to my Windows computer. I don’t want to use an online YouTube to MP3 converter to do this one video at a time. Can anyone recommend a tool that can convert all the videos in a YouTube playlist to MP3 without losing audio quality? Your advice would be greatly appreciated. Thank you.
I recently discovered a YouTube channel with a lot of non-copyrighted instrumental music that I really enjoy. The channel states that all the music is non-copyright, so I can freely download the videos to my computer for offline listening. However, I don’t have a YouTube Premium subscription, and the download options provided by YouTube Premium are not what I’m looking for. I would like to convert the entire playlist of these music videos to MP3 format so I can download them to my Windows computer. I don’t want to use an online YouTube to MP3 converter to do this one video at a time. Can anyone recommend a tool that can convert all the videos in a YouTube playlist to MP3 without losing audio quality? Your advice would be greatly appreciated. Thank you. Read More
Analysis Zeilen mit Pluskennzeichen einblenden
Hallo,
ich habe Analysis neu installiert bekommen auf meinem Rechner und jetzt lassen sich die Zeilen mit einem Plus nicht mehr öffnen.
Hallo, ich habe Analysis neu installiert bekommen auf meinem Rechner und jetzt lassen sich die Zeilen mit einem Plus nicht mehr öffnen. Read More
External Users Licencing for D365.
Hi all,
For a customer of us, we need to make a choice between :
1. Power Pages (which licensing is very clear) and accessing, but with low customization capabilities
2. Or a specific website connected to Dynamics365, with high customization capabilies, but with quite confused rules for licensing.
The Dynamics 365 licensing guide, in the “Additional Licensing Requirements” paragraph, says : “External user access is available in limited situations to customers and third parties who interact with your organization or its affiliates (that is, separate companies or contractors). Off-site vendors who are not in employee-like relationships (such as IT help desk vendors who serve multiple organizations) also qualify as external users. These external users do not require user licenses to access Dynamics 365.
Limited external user access is included with your internal user licenses. However, the graphical interfaces for Business Central, Sales, Customer Service, and Field Service may not be accessed by external users.
The document does not explicitly show the limits an external user can face accessing data in Dynamics 365 ?
Can you help about licensing rules in that context ?
Thank you !
Laurent.
Hi all,For a customer of us, we need to make a choice between : 1. Power Pages (which licensing is very clear) and accessing, but with low customization capabilities 2. Or a specific website connected to Dynamics365, with high customization capabilies, but with quite confused rules for licensing. The Dynamics 365 licensing guide, in the “Additional Licensing Requirements” paragraph, says : “External user access is available in limited situations to customers and third parties who interact with your organization or its affiliates (that is, separate companies or contractors). Off-site vendors who are not in employee-like relationships (such as IT help desk vendors who serve multiple organizations) also qualify as external users. These external users do not require user licenses to access Dynamics 365.Limited external user access is included with your internal user licenses. However, the graphical interfaces for Business Central, Sales, Customer Service, and Field Service may not be accessed by external users. The document does not explicitly show the limits an external user can face accessing data in Dynamics 365 ? Can you help about licensing rules in that context ? Thank you !Laurent. Read More
Microsoft List Forms – Multiple Choice Type not showing all answers
I have created a list which contains a column for “Client”. This column is of the type “Multiple Choice” with “Can add values manually” selected.
I then completed the form and added “client 2” when completing the “client” field.
This worked and the item was added to the list. However when trying to complete the form again, “client 2” is not an option to pick for the “client” field. It appears if you click “New” when on the list, but it doesn’t appear when on the form.
– client field in “form”
– client field in “new”
Am I doing something wrong, or is this a bug?
I have created a list which contains a column for “Client”. This column is of the type “Multiple Choice” with “Can add values manually” selected. I then completed the form and added “client 2” when completing the “client” field. This worked and the item was added to the list. However when trying to complete the form again, “client 2” is not an option to pick for the “client” field. It appears if you click “New” when on the list, but it doesn’t appear when on the form. – client field in “form” – client field in “new” Am I doing something wrong, or is this a bug? Read More
Azure Defender On Linux VM – Help With Exit Codes
Hello,
We have installed Azure Defender on a Linux VM and need to run a custom virus scan from a bash script. Our goal is to scan a file and identify any threats.
Below is the bash script we are using. We assumed that mdatp would return an exit code of 0 if no threat is found, and an exit code greater than 0 if a threat is identified. However, it always returns an exit code of 0. Could you guide us on the correct exit codes returned by mdatp or suggest a better approach?
Many thanks in advance
Hello, We have installed Azure Defender on a Linux VM and need to run a custom virus scan from a bash script. Our goal is to scan a file and identify any threats. Below is the bash script we are using. We assumed that mdatp would return an exit code of 0 if no threat is found, and an exit code greater than 0 if a threat is identified. However, it always returns an exit code of 0. Could you guide us on the correct exit codes returned by mdatp or suggest a better approach?Many thanks in advance Read More
CANNOT ACCESS WORK/VIDEOS ON SHARE POINT…..PLEASE ADVISE
Hi
We have tried to access our Share Point to watch our videos but it says they are not available.
Can you please help us as we have heard that MICROSOFT have taken over but we have had no notification ?
Thank you
Naj
Hi We have tried to access our Share Point to watch our videos but it says they are not available.Can you please help us as we have heard that MICROSOFT have taken over but we have had no notification ? Thank you Naj Read More
Customise Filter Option Values
Hi,
Is there any way to customize what values can be displayed in the filter options of a SharePoint list. Here, in this example, I am looking to remove (Empty) from the filters but I do want all the rows having empty in that specific column to be displayed as usual.
Thank you
Hi,Is there any way to customize what values can be displayed in the filter options of a SharePoint list. Here, in this example, I am looking to remove (Empty) from the filters but I do want all the rows having empty in that specific column to be displayed as usual. Thank you Read More
Connecting AIS (Logic Apps) to On-Prem resources
Hi,
We’re currently using an on-prem BizTalk ESB to leverage our integrations and I’m tasked with scoping the transition over to AIS.
I’ve figured out the appropriate tooling required and what services we’re likely to leverage within AIS, but there will be a strong dependency on on-prem connections (most of our services are maintained within internal SQL DB’s and Network shares).
I’ve done some further reading on the Azure Data Gateway, and can see that we connect our local SQL DB’s to Logic Apps through it, but is it possible for the data gateway to poll/listen out for SQL data changes?
Thanks
Chris
Hi, We’re currently using an on-prem BizTalk ESB to leverage our integrations and I’m tasked with scoping the transition over to AIS.I’ve figured out the appropriate tooling required and what services we’re likely to leverage within AIS, but there will be a strong dependency on on-prem connections (most of our services are maintained within internal SQL DB’s and Network shares). I’ve done some further reading on the Azure Data Gateway, and can see that we connect our local SQL DB’s to Logic Apps through it, but is it possible for the data gateway to poll/listen out for SQL data changes? ThanksChris Read More
Exploring Immutable Vortex: Advanced Technology
In the fast-paced realm of cryptocurrency trading, Immutable Vortex emerges as a beacon of technological progress, embodying the transformative potential of automated trading systems. In this comprehensive review, we delve deep into Immutable Vortex, exploring its features and operational intricacies to unveil its significance in the ever-evolving landscape of digital asset trading.
Understanding Immutable Vortex
Immutable Vortex stands as an automated trading system engineered to streamline and optimize cryptocurrency trading for users. Functioning as a digital assistant, this trading bot harnesses cutting-edge technologies like Artificial Intelligence (AI) and blockchain to analyze market data, identify trends, and execute trades. Its primary objective is to furnish users, spanning from novices to seasoned traders, with a tool capable of navigating the complexities of cryptocurrency markets efficiently.
In the fast-paced realm of cryptocurrency trading, Immutable Vortex emerges as a beacon of technological progress, embodying the transformative potential of automated trading systems. In this comprehensive review, we delve deep into Immutable Vortex, exploring its features and operational intricacies to unveil its significance in the ever-evolving landscape of digital asset trading. Understanding Immutable VortexImmutable Vortex stands as an automated trading system engineered to streamline and optimize cryptocurrency trading for users. Functioning as a digital assistant, this trading bot harnesses cutting-edge technologies like Artificial Intelligence (AI) and blockchain to analyze market data, identify trends, and execute trades. Its primary objective is to furnish users, spanning from novices to seasoned traders, with a tool capable of navigating the complexities of cryptocurrency markets efficiently. Start Now Read More
Unstable updates
Since I’ve been testing new features and updates, With the recent updates. I’ve noticed that my system has become unstable and slow performance. I’m finding it difficult to work on my computer because of these issues. I’ve tried to troubleshoot the problem, but nothing seems to be working.
I’m worried that the updates are causing more harm than good and am looking for suggestions on how to resolve the issue. Has anyone else experienced similar problems with the Windows Insider Program?
Since I’ve been testing new features and updates, With the recent updates. I’ve noticed that my system has become unstable and slow performance. I’m finding it difficult to work on my computer because of these issues. I’ve tried to troubleshoot the problem, but nothing seems to be working.I’m worried that the updates are causing more harm than good and am looking for suggestions on how to resolve the issue. Has anyone else experienced similar problems with the Windows Insider Program? Read More
Is it worth joining Windows Insider Program?
I’m considering joining the Windows Insider Program, but I’m not sure if it’s worth the potential hassle. On one hand, I’m excited about the prospect of trying out new features and getting early access to updates. On the other hand, I’ve heard that the program can be unstable and cause more problems than it solves.
I’m wondering if anyone has any experiences with the Windows Insider Program that can help me make a decision. Are there any specific pros and cons that I should know about?
I’m considering joining the Windows Insider Program, but I’m not sure if it’s worth the potential hassle. On one hand, I’m excited about the prospect of trying out new features and getting early access to updates. On the other hand, I’ve heard that the program can be unstable and cause more problems than it solves. I’m wondering if anyone has any experiences with the Windows Insider Program that can help me make a decision. Are there any specific pros and cons that I should know about? Read More
How to Install Insider builds on my unsupported laptop?
I’m trying to install the Windows Insider builds on my laptop, but it’s not officially supported by Microsoft. I’ve heard that the program is only available for certain devices, and I’m worried that my laptop might not be compatible. Despite this, I’m interested in trying out the new features and updates, but I’m not sure if it’s possible to install the Insider builds on my machine.
I’ve tried searching for answers online, but I haven’t found any clear guidance on how to do this. I’ve also checked the system requirements for the Windows Insider Program, but they don’t seem to mention anything about supported hardware. How can I install Insider builds on my unsupported laptop?
I’m trying to install the Windows Insider builds on my laptop, but it’s not officially supported by Microsoft. I’ve heard that the program is only available for certain devices, and I’m worried that my laptop might not be compatible. Despite this, I’m interested in trying out the new features and updates, but I’m not sure if it’s possible to install the Insider builds on my machine. I’ve tried searching for answers online, but I haven’t found any clear guidance on how to do this. I’ve also checked the system requirements for the Windows Insider Program, but they don’t seem to mention anything about supported hardware. How can I install Insider builds on my unsupported laptop? Read More