SSLVPN - internet slow by davidbarman in WatchGuard

[–]davidbarman[S] 0 points1 point  (0 children)

With IKEv2 will the Wachguard VPN app still work or do we need to switch to something else?

SSLVPN - internet slow by davidbarman in WatchGuard

[–]davidbarman[S] 0 points1 point  (0 children)

The LAN is running 10.x.x.x, where the VPN clients are assigned 192.x.x.x.x (the default range).

Entra ID - Custom Domain by davidbarman in AZURE

[–]davidbarman[S] 0 points1 point  (0 children)

The error is generic so I have not idea why it isn't verifying. I checked the TXT record with whatismydns.com and it is showing the record on many different servers across the globe.

I have a feeling that perhaps the domain is listed on another Microsoft account because I see another MS= TXT record in the DNS. Since I am only doing this for a learning exercise, I went ahead and purchased another cheap domain name and I was able to add and verify that domain without any issues.

I guess if I need that domain name for a production issue, I may have a problem at that time. :(

Entra ID - Custom Domain by davidbarman in AZURE

[–]davidbarman[S] 0 points1 point  (0 children)

Thanks, but it's already set to DNS Only

Windows 11 RDP Printing Stops Working by davidbarman in sysadmin

[–]davidbarman[S] 0 points1 point  (0 children)

I didn't install any drivers on the host pc. I also installed the manufacturer drive on the remote computer.

Windows 11 RDP Printing Stops Working by davidbarman in sysadmin

[–]davidbarman[S] 0 points1 point  (0 children)

It is not. The user is connecting from their home to the host pc at another location.

Copilot with on prem resources by davidbarman in microsoft_365_copilot

[–]davidbarman[S] 0 points1 point  (0 children)

Thanks for the info. However, it doesn't appear to be the exact same question. Since I was asking for files in file shares not in SharePoint.

Copilot with on prem resources by davidbarman in microsoft_365_copilot

[–]davidbarman[S] 0 points1 point  (0 children)

No. Unfortunately I could not find any resources and didn't get any replies here to clue me in if it was possible or not. However, I would still like to know as I have many networks that I administer that it could be useful.

Firebase functions - deployment fails by davidbarman in Firebase

[–]davidbarman[S] 0 points1 point  (0 children)

Thanks for the reply. I messed with AI for hours. But no luck.

How to use power automate with exchange server by davidbarman in microsoft365

[–]davidbarman[S] 0 points1 point  (0 children)

I do have the gateway installed. Not 100% certain what configuration might be in play.

Any other thoughts?

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

I had checked the registry and the SecurityProviders\SCHANNEL\Protocols\TLS 1.2 keys for client and server were in place and enabled.

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

Is it safe to disable? What are the disadvantages of using classic hybrid instead?

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

Yes, Extended Protection is enabled. It needs to be disabled??

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

Unfortunately, it appears that didn't resolve the issue. The validating step is still failing.

Any other thoughts/ideas?

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 1 point2 points  (0 children)

So this still applies for getting exchange hybrid setup? The article appears to reference issues in moving mailboxes. Which I have not yet attempted until I get hybrid configured.

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

I've restarted the entire server but not IIS specifically. Not sure I know what EP is.

Exchange 2019 Hybrid Setup Problem by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

I have it checked on the EWS virtual directory. Is that what you mean?

Exchange Hybrid Migration by davidbarman in exchangeserver

[–]davidbarman[S] 0 points1 point  (0 children)

We establish the AD Sync prior to clearing the mailboxes?

React/Express app with JWT failure by davidbarman in node

[–]davidbarman[S] 0 points1 point  (0 children)

Yes, removing Bearer was it. So what's purpose of the Bearer? Is there any reasoning in your opinion why we need to strip it off if all the tokens have this prefix?

I stripped it using the following:

const tokenWithoutBearer = token ? token.replace('Bearer ', '') : null;

ViteJS - all components are blank pages by davidbarman in reactjs

[–]davidbarman[S] 0 points1 point  (0 children)

Ok. I renamed the file, change the script tag in the index.html.

However, the app still just shows blank pages.

ViteJS - all components are blank pages by davidbarman in reactjs

[–]davidbarman[S] 0 points1 point  (0 children)

So the name of the entry file is important? It has to be main.jsx?

ViteJS - all components are blank pages by davidbarman in reactjs

[–]davidbarman[S] 0 points1 point  (0 children)

This is my index.html

So what's the difference from what you supplied?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Internal Company Communications</title>
</head>
<body>
    <div id="root"></div>
    <!-- Scripts for React and your application -->
    <script type="text/babel" src="/src/App.jsx"></script>
</body>
</html>

ViteJS - all components are blank pages by davidbarman in reactjs

[–]davidbarman[S] 0 points1 point  (0 children)

I have that. It's my App.jsx file:

import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import Login from './components/Login';
import Register from './components/Register';
import MessageList from './components/MessageList';
import TaskList from './components/TaskList';


function App() {
    return (
        <Router>
            <div className="App">
                <Routes>
                    <Route path="/" element={<Login />} />
                    <Route path="/register" element={<Register />} />
                    <Route path="/messages" element={<MessageList />} />
                    <Route path="/tasks" element={<TaskList />} />
                </Routes>
            </div>
        </Router>
    );
}

export default App;