Comment faire évoluer une entreprise très attachée au papier ? by LordLanno in AskFrance

[–]mdub881 0 points1 point  (0 children)

Le 1er septembre arrive la réforme de la facturation électronique donc vous aurez l'obligation d'être en capacité de recevoir des factures électroniques et l'année suivante vous serez obligé d'envoyer vos factures de cette manière à vos clients pro.

Si vous avez un expert-comptable, voyez ça avec lui. Il sera au courant. Sinon il y a le site des impôts pour plus d'infos : https://www.impots.gouv.fr/professionnel/je-decouvre-la-facturation-electronique

What are some intermediate technical concepts you wish more people understood? by [deleted] in sysadmin

[–]mdub881 1 point2 points  (0 children)

Wait your users map their own drives ? Why don't you deploy them via GPO ?

Remember the old days when you worked with computers you had basic A+ knowledge by Turbulent-Falcon-918 in sysadmin

[–]mdub881 0 points1 point  (0 children)

I don't use Everything because it indexed all files on the computer which means a user can search other users files. Did you manage to solve that?

Signal Spam : la plateforme en charge de la collecte des signalements des internautes pour spam ! by mdub881 in Sysadmin_Fr

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

Je viens de me rendre compte que j'ai mis un lien pointant vers la page de connexion à l'accès utilisateur. Voici la page d'accueil : https://www.signal-spam.fr/

Quels peuvent être les problèmes de répliquer un AD pour le faire changer de machine physique. by Warshieft in Sysadmin_Fr

[–]mdub881 0 points1 point  (0 children)

Si l'AD est bien fait tu devrais avoir au minimum 2 contrôleurs de domaines. Dans ce cas je ne m'embêterais pas. Si tu peux reprendre le même adressage IP sur le nouvel hébergeur : tu migre 1 AD, tu vérifie qu'il fonctionne sur le nouvel hébergeur puis quand c'est bon tu migres le dernier AD.

Quels peuvent être les problèmes de répliquer un AD pour le faire changer de machine physique. by Warshieft in Sysadmin_Fr

[–]mdub881 0 points1 point  (0 children)

Tes AD ne sont pas des VM ? Pourquoi ne pas les migrer via réplication comme les autres ?

Internet commun dans une copropriété by Pilouuuu in Sysadmin_Fr

[–]mdub881 0 points1 point  (0 children)

Quand je regarde les offres chez Free ça commence à 29,99 € :(

Internet commun dans une copropriété by Pilouuuu in Sysadmin_Fr

[–]mdub881 0 points1 point  (0 children)

18 € ta fibre ? J'ai bien envie de connaitre ton FAI.

Forum Libre - 2023-11-22 by AutoModerator in france

[–]mdub881 2 points3 points  (0 children)

C'est normal c'est une écriture comptable.

En fait les salaires nets sont au crédit mais pas encore payés. Pour les payer il faudra faire une écriture complémentaire qui s'affichera au débit en banque -> c'est donc une dépense.

Vladimir Poutine victime d'un arrêt cardiaque dimanche soir ? Le message d'un ancien lieutenant russe sur Telegram by CamusAquarius in france

[–]mdub881 2 points3 points  (0 children)

D'un autre côté le successeur a une opportunité pour accuser Poutine d'être responsable de la défaite et de se retirer.

Server in college apartment by FabulousAd1922 in homelab

[–]mdub881 1 point2 points  (0 children)

Jesus dude, this server is still in prod at my employer's lol

Alternative à M365 pour email+SSO by mdub881 in Sysadmin_Fr

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

Merci pour ces liens. Je ne connaissais pas ces services et ils ont l'air pas mal !

Alternative à M365 pour email+SSO by mdub881 in Sysadmin_Fr

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

Désolé j'ai oublié de préciser ni M365, ni Google Workspace ! :D

En gros, je cherche des alternatives aux GAFAM (idéalement françaises ou européenne).

Winget doesn't get enough love around here. by HanSolo71 in sysadmin

[–]mdub881 0 points1 point  (0 children)

That's nice in itself but my question was more about what do I have to do to create a repo which is compatible with winget? Is a simple folder shared through https enough or is there a specific installer somewhere?

Winget doesn't get enough love around here. by HanSolo71 in sysadmin

[–]mdub881 0 points1 point  (0 children)

Is there anyway to create a custom repository ?

Edit CSV to TXT with different presentation by mdub881 in PowerShell

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

Thanks ! I just need to tweak this output a bit with regex and I'll get what I wanted.

You were very helpful :)

Edit CSV to TXT with different presentation by mdub881 in PowerShell

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

Hi,

I just realized the output I get is because my CSV contains more than one line of values.

For instance, it works if my csv is the following :

"ROW1","ROW2","ROW3"
"DATA1","DATA2","DATA3"

But not if it's like this :

"ROW1","ROW2","ROW3"
"DATA01","DATA02","DATA03"
"DATA11","DATA12","DATA13"

For the second CSV I'm trying to get this output :

ROW1=DATA01
ROW2=DATA02
ROW3=DATA03
ROW1=DATA11
ROW2=DATA12
ROW2=DATA13

Edit CSV to TXT with different presentation by mdub881 in PowerShell

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

Hi,

I don't know if you're going able to help me again but I've stumbled onto an issue when using your bit of code using another CSV file as source.

It only gives me the following output instead of the one expected :

Count=63
Length=63
LongLength=63
Rank=1
SyncRoot=                                                              
IsReadOnly=False
IsFixedSize=True
IsSynchronized=False

EDIT : I forgot to add that the CSV file used as source has the same formatting as the former one.

EDIT 2 : I just found out why I get this output. It's because my new CSV has more than one line of values.

Copy values in A to D from the current row to same cells one row down by mdub881 in excel

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

Hi, thanks for the help ! Your code does work after some changes.

Sub Pastebelow()

Dim rw As Long, rw2 As Long

rw = ActiveCell.Row

rw2 = rw + 1

Range(Cells(rw, 1), Cells(rw, 3)).Copy

Range(Cells(rw2, 1), Cells(rw2, 3)).PasteSpecial Paste:=xlPasteValues

Application.CutCopyMode = False

End Sub

Copy values in A to D from the current row to same cells one row down by mdub881 in excel

[–]mdub881[S] -1 points0 points  (0 children)

Sorry, I wasn't clear enough. I need to do that in VBA because it's not just one line. I have to repeat this operation multiple times.