Jak utworzyć folder / katalog z nazwą folderu / katalogu jako dzisiejszą datą w Windows PowerShell?
ni -it d (get-date).toString('dd.M.yy')
Powyższa w nim pełno forma jest…
new-item -itemtype directory (get-date).toString('dd.M.yy')
ni -it d (get-date).toString('dd.M.yy')
Powyższa w nim pełno forma jest…
new-item -itemtype directory (get-date).toString('dd.M.yy')